diff --git a/admin_manual/installation/example_centos.rst b/admin_manual/installation/example_centos.rst index fe63f8ccb..c20bc4a68 100644 --- a/admin_manual/installation/example_centos.rst +++ b/admin_manual/installation/example_centos.rst @@ -21,8 +21,29 @@ Apache :: dnf install -y httpd + +Create a virtualhost in ``/etc/httpd/conf.d/nextcloud.conf`` and add the following content to it: -See :ref:`apache_configuration_label` for details. +:: + + + DocumentRoot /var/www/html/nextcloud/ + ServerName your.server.com + + + Require all granted + AllowOverride All + Options FollowSymLinks MultiViews + + + Dav off + + + + + + +See :ref:`apache_configuration_label` for further details. Make sure the apache web service is enabled and started::