diff --git a/admin_manual/installation/example_centos.rst b/admin_manual/installation/example_centos.rst index fe63f8ccb..56b5109a7 100644 --- a/admin_manual/installation/example_centos.rst +++ b/admin_manual/installation/example_centos.rst @@ -21,8 +21,26 @@ 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 + + + + Make sure the apache web service is enabled and started::