diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-02-18 16:26:37 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-02-21 15:19:01 +0100 |
commit | fe44ac264bd8f636c1189d6ad6430ac991038ae6 (patch) | |
tree | 40af92ef770fee2cea520165b10648ed794485c4 /config/config.sample.php | |
parent | 92560c5b86cb88920b6e439bdf4b90f1d59e9b6c (diff) | |
download | nextcloud-server-fe44ac264bd8f636c1189d6ad6430ac991038ae6.tar.gz nextcloud-server-fe44ac264bd8f636c1189d6ad6430ac991038ae6.zip |
Add overwritehost config on setup and upgrade
Diffstat (limited to 'config/config.sample.php')
-rwxr-xr-x | config/config.sample.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 0cd321d095d..ed37c60adf0 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -53,6 +53,9 @@ $CONFIG = array( /* The optional authentication for the proxy to use to connect to the internet. The format is: [username]:[password] */ "proxyuserpwd" => "", +/* List of trusted domains, to prevent host header poisoning ownCloud is only using these Host headers */ +'trusted_domains' => array('demo.owncloud.org'), + /* Theme to use for ownCloud */ "theme" => "", |