diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-04-26 22:37:30 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-04-26 23:13:48 +0200 |
commit | e5def25f40fdffdf7e44ca7bab95b685e16f711c (patch) | |
tree | 53427d42d0230afabd7f21da21df7b274d8944f3 | |
parent | 2c92ef9e6421721e29bbb03f7544b1e3e94561b7 (diff) | |
download | nextcloud-server-e5def25f40fdffdf7e44ca7bab95b685e16f711c.tar.gz nextcloud-server-e5def25f40fdffdf7e44ca7bab95b685e16f711c.zip |
Add another example to the trusted_domains config
Users often ask in IRC or the forum how to add another domain.
Hopefully they will be able to find it out on their own if we have an example with two domains.
-rwxr-xr-x | config/config.sample.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 72b21ff93f8..0cf8611d94b 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -54,7 +54,7 @@ $CONFIG = array( "proxyuserpwd" => "", /* List of trusted domains, to prevent host header poisoning ownCloud is only using these Host headers */ -'trusted_domains' => array('demo.owncloud.org'), +'trusted_domains' => array('demo.owncloud.org', 'otherdomain.owncloud.org'), /* Theme to use for ownCloud */ "theme" => "", |