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
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^