diff options
author | Lukas Reschke <lukas@owncloud.com> | 2016-05-09 11:25:58 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-05-09 11:25:58 +0200 |
commit | 8b428d84c0666d3ded46c20965784b2f5f5369fb (patch) | |
tree | bdbe06e79f1f0f1337b7025147430cb723250e76 /config | |
parent | a502de0d28c6c4d7ddd23f40ef0ab49f4782988a (diff) | |
download | nextcloud-server-8b428d84c0666d3ded46c20965784b2f5f5369fb.tar.gz nextcloud-server-8b428d84c0666d3ded46c20965784b2f5f5369fb.zip |
Make update server URL configurable
Currently testing the updates is a big problem and not really super easy possible. Since we now have a new updater server we should also make this configurable so that people can properly test updates.
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index db662cfd74f..0027a533368 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -472,6 +472,11 @@ $CONFIG = array( 'updatechecker' => true, /** + * URL that ownCloud should use to look for updates + */ +'updater.server.url' => 'https://updates.owncloud.com/server/', + +/** * Is ownCloud connected to the Internet or running in a closed network? */ 'has_internet_connection' => true, |