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:14:21 +0200 |
commit | 321dacabd43ad041bffb02a4b1c8543b65b634b8 (patch) | |
tree | 7dc037690e8ed63245eb2ceb9710262d475f55d5 | |
parent | 889794884d1305ceff2cad1bca4caadf7bd4291f (diff) | |
download | nextcloud-server-321dacabd43ad041bffb02a4b1c8543b65b634b8.tar.gz nextcloud-server-321dacabd43ad041bffb02a4b1c8543b65b634b8.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 77987a574e3..8f7d4634b00 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" => "", |