Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions admin_manual/installation/source_installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,16 @@ your HTTP user::

chown -R www-data:www-data /var/www/nextcloud/

.. note:: ``www-data`` is the default web server user on Debian/Ubuntu systems.
On RHEL/CentOS/Fedora use ``apache``. The key requirement is that the web
server process user has **read and write access** to all Nextcloud directories
— ownership is not strictly necessary. In environments where changing ownership
is not possible (shared hosting, Docker bind-mounts, etc.), it is sufficient to
add the web server user to the group that owns the directories and ensure the
directories are group-writable, for example::

usermod -a -G vboxsf www-data

.. note:: Admins of SELinux-enabled distributions may need to write new SELinux
rules to complete their Nextcloud installation; see
:ref:`selinux_tips_label`.
Expand Down
Loading