summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2014-07-17 21:54:46 -0400
committerFrank Karlitschek <frank@owncloud.org>2014-07-17 21:54:46 -0400
commitf92b5a2507f427288f2d606d42149c0a249c9ad4 (patch)
treeb82fc27a7db68e006c7508fa6eda6f922f0b7ee4
parent5665686da591d880a3f350883b82b2ab1282d608 (diff)
downloadnextcloud-server-f92b5a2507f427288f2d606d42149c0a249c9ad4.tar.gz
nextcloud-server-f92b5a2507f427288f2d606d42149c0a249c9ad4.zip
update appstore api url
-rwxr-xr-xconfig/config.sample.php2
-rw-r--r--lib/private/ocsclient.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index 1bfae366fff..24c1579badf 100755
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -88,7 +88,7 @@ $CONFIG = array(
"appstoreenabled" => true,
/* URL of the appstore to use, server should understand OCS */
-"appstoreurl" => "http://api.apps.owncloud.com/v1",
+"appstoreurl" => "https://api.owncloud.com/v1",
/* Domain name used by ownCloud for the sender mail address, e.g. no-reply@example.com */
"mail_domain" => "example.com",
diff --git a/lib/private/ocsclient.php b/lib/private/ocsclient.php
index 39d7e9ccccd..dc52fc27b5e 100644
--- a/lib/private/ocsclient.php
+++ b/lib/private/ocsclient.php
@@ -37,7 +37,7 @@ class OC_OCSClient{
*/
private static function getAppStoreURL() {
if(OC_Util::getEditionString()===''){
- $default='http://api.apps.owncloud.com/v1';
+ $default='https://api.owncloud.com/v1';
}else{
$default='';
}