diff options
author | Volkan Gezer <wakeup@users.noreply.github.com> | 2014-05-03 14:41:36 +0200 |
---|---|---|
committer | Volkan Gezer <wakeup@users.noreply.github.com> | 2014-05-03 14:41:36 +0200 |
commit | 6dfc63a24011aa3a0e96bd5e501acc8215922208 (patch) | |
tree | ecd4775872caeefc11149841817baff0d1df56d8 /config | |
parent | e7c6111ae3810e2d89edcced58fb35198c39f8c2 (diff) | |
download | nextcloud-server-6dfc63a24011aa3a0e96bd5e501acc8215922208.tar.gz nextcloud-server-6dfc63a24011aa3a0e96bd5e501acc8215922208.zip |
Minor changes in config.sample
* appcodechecker accepts boolean.
* using different ports in trusted domains
Partially fixes #330
Diffstat (limited to 'config')
-rwxr-xr-x | config/config.sample.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 12affc1c81f..0bfdef6af5a 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', 'otherdomain.owncloud.org'), +'trusted_domains' => array('demo.owncloud.org', 'otherdomain.owncloud.org:8080'), /* Theme to use for ownCloud */ "theme" => "", @@ -142,7 +142,7 @@ $CONFIG = array( 'allow_user_to_change_display_name' => true, /* Check 3rdparty apps for malicious code fragments */ -"appcodechecker" => "", +"appcodechecker" => false, /* Check if ownCloud is up to date */ "updatechecker" => true, |