From b048e7129a164bcd8d7849a63dd6e9e9fcd2f0ab Mon Sep 17 00:00:00 2001
From: Lukas Reschke <lukas@owncloud.com>
Date: Fri, 27 Feb 2015 11:37:30 +0100
Subject: [PATCH] Add more HTTPS endpoints

The doc server can now finally speak SSL...
---
 README.md                | 8 ++++----
 lib/private/defaults.php | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 5ab49d7e39..2205c871a0 100644
--- a/README.md
+++ b/README.md
@@ -11,14 +11,14 @@ Quality:
  - CodeClimate: [![Code Climate](https://codeclimate.com/github/owncloud/core/badges/gpa.svg)](https://codeclimate.com/github/owncloud/core)
 
 ### Installation instructions
-http://doc.owncloud.org/server/8.0/developer_manual/app/index.html
+https://doc.owncloud.org/server/8.0/developer_manual/app/index.html
 
 ### Contribution Guidelines
-http://owncloud.org/contribute/
+https://owncloud.org/contribute/
 
 ### Get in touch
-* [Forum](http://forum.owncloud.org)
-* [Mailing list](http://mailman.owncloud.org/mailman/listinfo)
+* [Forum](https://forum.owncloud.org)
+* [Mailing list](https://mailman.owncloud.org/mailman/listinfo)
 * [IRC channel](https://webchat.freenode.net/?channels=owncloud)
 * [Twitter](https://twitter.com/ownClouders)
 
diff --git a/lib/private/defaults.php b/lib/private/defaults.php
index a3902ee80d..bb24509293 100644
--- a/lib/private/defaults.php
+++ b/lib/private/defaults.php
@@ -35,7 +35,7 @@ class OC_Defaults {
 		$this->defaultiOSClientUrl = 'https://itunes.apple.com/us/app/owncloud/id543672169?mt=8';
 		$this->defaultiTunesAppId = '543672169';
 		$this->defaultAndroidClientUrl = 'https://play.google.com/store/apps/details?id=com.owncloud.android';
-		$this->defaultDocBaseUrl = 'http://doc.owncloud.org';
+		$this->defaultDocBaseUrl = 'https://doc.owncloud.org';
 		$this->defaultDocVersion = $version[0] . '.0'; // used to generate doc links
 		$this->defaultSlogan = $this->l->t('web services under your control');
 		$this->defaultLogoClaim = '';
-- 
GitLab