From a454db5c3e61c5ce1cca11fe161010ffdc21dcfd Mon Sep 17 00:00:00 2001 From: Jos Poortvliet Date: Thu, 2 May 2019 10:52:29 +0200 Subject: [PATCH 01/10] add 2.5 version of desktop client Signed-off-by: Jos Poortvliet Signed-off-by: Sascha Wiswedel --- index.html | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 929c38ed0..07b44619b 100644 --- a/index.html +++ b/index.html @@ -265,9 +265,17 @@

Nextcloud Desktop Client

Once you have a Nextcloud Server running, you can connect to it with various clients like our mobile and desktop client. Find documentation for the desktop client below.

+
+

Desktop 2.5

+

This documents the latest version of the Nextcloud desktop client.

+ +

Desktop 2.3

-

This documents the latest version of the Nextcloud desktop client.

+

This documents the previous version of the Nextcloud desktop client. + This version is no longer supported and users are encouraged to upgrade!

@@ -275,7 +283,7 @@

Desktop 2.2

-

This documents the previous version of the Nextcloud desktop client. +

This documents an older version of the Nextcloud desktop client. This version is no longer supported and users are encouraged to upgrade!

  • Manual From b77a0914c219a66bf5b787ef6488d54ec7669e80 Mon Sep 17 00:00:00 2001 From: Sascha Wiswedel Date: Fri, 3 May 2019 06:27:52 +0200 Subject: [PATCH 02/10] formatting on list of supported apps corrected formatting for a bullet point Signed-off-by: Sascha Wiswedel --- admin_manual/installation/apps_supported.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/installation/apps_supported.rst b/admin_manual/installation/apps_supported.rst index c71817212..da80677ed 100644 --- a/admin_manual/installation/apps_supported.rst +++ b/admin_manual/installation/apps_supported.rst @@ -61,4 +61,4 @@ Nextcloud Groupware Nextcloud Talk -------------- -** `Talk `_ +* `Talk `_ From dd4832b3240bb26da056c7384c2618d0edf4b882 Mon Sep 17 00:00:00 2001 From: Sascha Wiswedel Date: Fri, 3 May 2019 06:29:57 +0200 Subject: [PATCH 03/10] Added Group folders to list of supported apps new supported app: Group folders Signed-off-by: Sascha Wiswedel --- admin_manual/installation/apps_supported.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/admin_manual/installation/apps_supported.rst b/admin_manual/installation/apps_supported.rst index da80677ed..29571c11d 100644 --- a/admin_manual/installation/apps_supported.rst +++ b/admin_manual/installation/apps_supported.rst @@ -22,6 +22,7 @@ Nextcloud Files * `Files `_ * `Files access control `_ * `Files Automated Tagging `_ +* `Group folders `_ * `External storage support `_ * `PDF Viewer `_ * `File sharing `_ From b6e3ea2b6f9e56439960c5402db14d3b264c4178 Mon Sep 17 00:00:00 2001 From: Sascha Wiswedel Date: Fri, 3 May 2019 06:43:19 +0200 Subject: [PATCH 04/10] cleanup on installation page rearranged orders, adjusted headliens Signed-off-by: Sascha Wiswedel --- .../installation/source_installation.rst | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/admin_manual/installation/source_installation.rst b/admin_manual/installation/source_installation.rst index 375a14aec..d10ed35b1 100644 --- a/admin_manual/installation/source_installation.rst +++ b/admin_manual/installation/source_installation.rst @@ -264,7 +264,7 @@ Now make sure your system is up to date:: yum update -y -**Apache**:: +**Apache** yum install -y httpd @@ -288,7 +288,7 @@ Make sure the apache web service is enabled and started:: systemctl enable httpd.service systemctl start httpd.service -**PHP**: +**PHP** Next install the PHP modules needed for this install. Remember, because this is a limited basic install, we only install the neccessary modules, not all of them. If you are making a more complete install, please refer to PHP module list at the top of this page.:: @@ -321,6 +321,14 @@ Make sure the database service is enabled to start at boot time.:: After you have done this, make sure you create a database with a username and password so that Nextcloud will have access to it. In the docs, refer to the Database configuration part, specifically about MariaDB. There is a complete write-up on how to setup the database. + +**Redis** + + yum install -y redis + systemctl enable redis.service + systemctl start redis.service + + **Installing Nextcloud** Nearly there, so keep at it, you are doing great! @@ -374,12 +382,6 @@ Create a firewall rule for access to apache:: firewall-cmd --zone=public --add-service=http --permanent firewall-cmd --reload -**Redis**:: - - yum install -y redis - systemctl enable redis.service - systemctl start redis.service - **SELinux** Again, there is an extensive write-up done on SELinux which can be found at :doc:`../installation/selinux_configuration`, so if you are using SELinux in Enforcing mode, please run the commands suggested on that page. From 5adc5cab719dfdd13bd687564d43f9df4a3cf6d0 Mon Sep 17 00:00:00 2001 From: Sascha Wiswedel Date: Fri, 3 May 2019 06:58:31 +0200 Subject: [PATCH 05/10] Apache config reordering order was confusing for CentOS setup Signed-off-by: Sascha Wiswedel --- .../installation/source_installation.rst | 41 +++++++++++-------- 1 file changed, 25 insertions(+), 16 deletions(-) diff --git a/admin_manual/installation/source_installation.rst b/admin_manual/installation/source_installation.rst index d10ed35b1..ceca564a6 100644 --- a/admin_manual/installation/source_installation.rst +++ b/admin_manual/installation/source_installation.rst @@ -267,21 +267,8 @@ Now make sure your system is up to date:: **Apache** yum install -y httpd - -Create a virtualhost file and add the following content to it:: - - vi /etc/httpd/conf.d/nextcloud.conf - - - DocumentRoot /var/www/html/ - ServerName your.server.com - - - Require all granted - AllowOverride All - Options FollowSymLinks MultiViews - - + +See :ref:`apache-web-server-configuration` for details. Make sure the apache web service is enabled and started:: @@ -431,7 +418,8 @@ it, replacing the **Directory** and other filepaths with your own filepaths:: Alias /nextcloud "/var/www/nextcloud/" - Options +FollowSymlinks + Require all granted + Options FollowSymlinks MultiViews AllowOverride All @@ -446,6 +434,27 @@ it, replacing the **Directory** and other filepaths with your own filepaths:: Then enable the newly created site:: a2ensite nextcloud.conf + + +On CentOS/RHEL, create a virtualhost :file:`/etc/httpd/conf.d/nextcloud.conf`and add the following content to it: + + + + DocumentRoot /var/www/nextcloud/ + ServerName your.server.com + + + + Require all granted + AllowOverride All + Options FollowSymLinks MultiViews + + + Dav off + + + + Additional Apache configurations ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ From 06ad8b69388caf050e1f435e814efef6390e0cfe Mon Sep 17 00:00:00 2001 From: Sascha Wiswedel Date: Fri, 3 May 2019 07:00:46 +0200 Subject: [PATCH 06/10] added PHP 7.3 to installation prerequisites Signed-off-by: Sascha Wiswedel --- admin_manual/installation/source_installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/installation/source_installation.rst b/admin_manual/installation/source_installation.rst index ceca564a6..c04b789d4 100644 --- a/admin_manual/installation/source_installation.rst +++ b/admin_manual/installation/source_installation.rst @@ -100,7 +100,7 @@ If you get a result, the module is present. Required: -* PHP (>= 7.0, 7.1 or 7.2) +* PHP (7.0, 7.1, 7.2 or 7.3) * PHP module ctype * PHP module curl * PHP module dom From 0a14840eefc069981f9e4eab0029e23e289561cb Mon Sep 17 00:00:00 2001 From: Sascha Wiswedel Date: Mon, 6 May 2019 05:33:13 +0200 Subject: [PATCH 07/10] Added Guests and Terms of Service to the list of supported apps Signed-off-by: Sascha Wiswedel --- admin_manual/installation/apps_supported.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/admin_manual/installation/apps_supported.rst b/admin_manual/installation/apps_supported.rst index 29571c11d..177b7eafc 100644 --- a/admin_manual/installation/apps_supported.rst +++ b/admin_manual/installation/apps_supported.rst @@ -23,6 +23,7 @@ Nextcloud Files * `Files access control `_ * `Files Automated Tagging `_ * `Group folders `_ +* `Guests `_ * `External storage support `_ * `PDF Viewer `_ * `File sharing `_ @@ -47,6 +48,7 @@ Nextcloud Files * `Twitter `_ * `SharePoint Backend `_ * `Theming `_ +* `Terms of Service `_ * `Update Notifications `_ * `LDAP user and group backend `_ * `SSO & SAML authentication `_ From 35352367adae3f2af2dcf71954fb9d3a56d68dde Mon Sep 17 00:00:00 2001 From: Sascha Wiswedel Date: Mon, 6 May 2019 10:28:18 +0200 Subject: [PATCH 08/10] updated release schedule for 17 Signed-off-by: Sascha Wiswedel --- admin_manual/release_schedule.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/admin_manual/release_schedule.rst b/admin_manual/release_schedule.rst index ee191d79b..f9267ef05 100644 --- a/admin_manual/release_schedule.rst +++ b/admin_manual/release_schedule.rst @@ -7,6 +7,8 @@ This page gives an overview of the currently supported and released versions as +--------+-------------------+------------------+--------------------------+---------------------------+ | | release date | end of life | latest version | next version | +========+===================+==================+==========================+===========================+ +| **17** | 2019-08-08 | 2020-08 | - | *17.0.0 (2019-08-08)* | ++--------+-------------------+------------------+--------------------------+---------------------------+ | **16** | 2019-04-25 | 2020-04 | **16.0.0** (2019-04-25) | *16.0.1 (2019-05-16)* | +--------+-------------------+------------------+--------------------------+---------------------------+ | **15** | 2018-12-10 | 2019-12 | **15.0.7** (2019-04-09) | *15.0.8 (2019-05-16)* | From 6af1a5cff228d66c0d3c29be733759725c4ace61 Mon Sep 17 00:00:00 2001 From: Joas Schilling <213943+nickvergessen@users.noreply.github.com> Date: Mon, 6 May 2019 12:11:17 +0200 Subject: [PATCH 09/10] Update admin_manual/installation/source_installation.rst Co-Authored-By: wiswedel Signed-off-by: Sascha Wiswedel --- admin_manual/installation/source_installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/installation/source_installation.rst b/admin_manual/installation/source_installation.rst index c04b789d4..c5f43e4d3 100644 --- a/admin_manual/installation/source_installation.rst +++ b/admin_manual/installation/source_installation.rst @@ -100,7 +100,7 @@ If you get a result, the module is present. Required: -* PHP (7.0, 7.1, 7.2 or 7.3) +* PHP (7.1, 7.2 or 7.3) * PHP module ctype * PHP module curl * PHP module dom From e9f8a5754bb1e7ed6844626b66f05ad00045ee73 Mon Sep 17 00:00:00 2001 From: Sascha Wiswedel Date: Mon, 6 May 2019 10:28:18 +0200 Subject: [PATCH 10/10] Revert "updated release schedule for 17" This reverts commit 93ae577d95020bbc1615021390e01f71e453e2eb. Signed-off-by: Sascha Wiswedel --- admin_manual/release_schedule.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/admin_manual/release_schedule.rst b/admin_manual/release_schedule.rst index f9267ef05..ee191d79b 100644 --- a/admin_manual/release_schedule.rst +++ b/admin_manual/release_schedule.rst @@ -7,8 +7,6 @@ This page gives an overview of the currently supported and released versions as +--------+-------------------+------------------+--------------------------+---------------------------+ | | release date | end of life | latest version | next version | +========+===================+==================+==========================+===========================+ -| **17** | 2019-08-08 | 2020-08 | - | *17.0.0 (2019-08-08)* | -+--------+-------------------+------------------+--------------------------+---------------------------+ | **16** | 2019-04-25 | 2020-04 | **16.0.0** (2019-04-25) | *16.0.1 (2019-05-16)* | +--------+-------------------+------------------+--------------------------+---------------------------+ | **15** | 2018-12-10 | 2019-12 | **15.0.7** (2019-04-09) | *15.0.8 (2019-05-16)* |