diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-02-22 07:35:56 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-02-22 07:35:56 +0100 |
commit | c9ab11a9bd191fd3b8bb6360be245cb5af52027c (patch) | |
tree | 8cf6a2bfd045b107403c8190c2807ed075fb886f /config | |
parent | 079d64ce750ac25a9562df75b663075304ab934a (diff) | |
parent | fe44ac264bd8f636c1189d6ad6430ac991038ae6 (diff) | |
download | nextcloud-server-c9ab11a9bd191fd3b8bb6360be245cb5af52027c.tar.gz nextcloud-server-c9ab11a9bd191fd3b8bb6360be245cb5af52027c.zip |
Merge pull request #7259 from owncloud/overwritehost-always
Add overwritehost config on setup and upgrade
Diffstat (limited to 'config')
-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 356843200b1..9c5eca8a5ec 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" => "", |