summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-11-13 11:15:47 +0100
committerLukas Reschke <lukas@owncloud.com>2014-11-13 11:15:47 +0100
commit786007c78cb8f585284a749df3164c1de6447d83 (patch)
treee5e4b3456989d3d5c723df9d8d4460ba3690c0ec /config
parentf52662ab26664ac9bf29ac557089884913fa5cbf (diff)
downloadnextcloud-server-786007c78cb8f585284a749df3164c1de6447d83.tar.gz
nextcloud-server-786007c78cb8f585284a749df3164c1de6447d83.zip
Ignore port for trusted domains
This lead to a lot of confusion in the past and did not really offer any value. Let's remove the port check therefore. (it's anyways not really a part of the domain) Fixes https://github.com/owncloud/core/issues/12150 and https://github.com/owncloud/core/issues/12123 and also a problem reported by @DeepDiver1975.
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index a7f92d93615..11c7a44b1ec 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -65,7 +65,7 @@ $CONFIG = array(
'trusted_domains' =>
array (
'demo.example.org',
- 'otherdomain.example.org:8080',
+ 'otherdomain.example.org',
),