Merge pull request #1214 from nextcloud/admin-manual-refactoring

Move some sections and rename headings
This commit is contained in:
Roeland Jago Douma
2019-02-01 22:57:06 +01:00
committed by GitHub
18 changed files with 47 additions and 50 deletions

View File

@@ -1,6 +1,6 @@
============================
Configuring the activity app
============================
============
Activity app
============
You can configure your Nextcloud server to automatically send out e-mail notifications
to your users for various events like:

View File

@@ -1,6 +1,6 @@
===============================
Antivirus scanner configuration
===============================
=================
Antivirus scanner
=================
You can configure your Nextcloud server to automatically run a virus scan on
newly-uploaded files with the Antivirus app for Files. The Antivirus app for

View File

@@ -1,6 +1,6 @@
=============================
Automatic configuration setup
=============================
===============
Automatic setup
===============
If you need to install Nextcloud on multiple servers, you normally do not want
to set up each instance separately as described in
@@ -13,6 +13,10 @@ You can specify any number of parameters in this file. Any unspecified paramete
The :file:`config/autoconfig.php` is automatically removed after the initial configuration has been applied.
.. note:: Keep in mind that the automatic configuration does not eliminate the need for
creating the database user and database in advance, as described in
:doc:`../configuration_database/linux_database_configuration`.
Parameters
----------
When configuring parameters, you must understand that two parameters are named differently in this configuration file when compared to the standard :file:`config.php` file.
@@ -74,10 +78,6 @@ Using the following parameter settings, the "Finish setup" screen requests data
"dbtableprefix" => "",
);
.. note:: Keep in mind that the automatic configuration does not eliminate the need for
creating the database user and database in advance, as described in
:doc:`../configuration_database/linux_database_configuration`.
PostgreSQL database
^^^^^^^^^^^^^^^^^^^

View File

@@ -1,6 +1,6 @@
========================
Defining background jobs
========================
===============
Background jobs
===============
A system like Nextcloud sometimes requires tasks to be done on a regular basis
without the need for user interaction or hindering Nextcloud performance. For
that purpose, as a system administrator, you can define background jobs (for

View File

@@ -1,6 +1,6 @@
==========================
Configuring memory caching
==========================
==============
Memory caching
==============
You can significantly improve your Nextcloud server performance with memory
caching, where frequently-requested objects are stored in memory for faster

View File

@@ -1,6 +1,6 @@
===================
Email configuration
===================
=====
Email
=====
Nextcloud is capable of sending password reset emails, notifying users of new
file shares, changes in files, and activity notifications. Your users configure

View File

@@ -1,6 +1,6 @@
====================
Server configuration
====================
=======================
Nextcloud configuration
=======================
.. toctree::
:maxdepth: 2
@@ -15,11 +15,9 @@ Server configuration
external_sites
language_configuration
logging_configuration
harden_server
antivirus_configuration
reverse_proxy_configuration
automatic_configuration
server_tuning
theming
oauth2

View File

@@ -1,6 +1,6 @@
======================
Language configuration
======================
=================
Language & Locale
=================
Default language
----------------

View File

@@ -1,6 +1,6 @@
=====================
Logging configuration
=====================
=======
Logging
=======
Use your Nextcloud log to review system status, or to help debug problems. You may adjust logging levels, and choose between using the Nextcloud log or your syslog.

View File

@@ -264,7 +264,7 @@ The other two commands are:
* ``background:cron``
* ``background:webcron``
See :doc:`../configuration_server/background_jobs_configuration` to learn more.
See :doc:`background_jobs_configuration` to learn more.
.. _config_commands_label:

View File

@@ -1,6 +1,6 @@
===========================
Reverse proxy configuration
===========================
=============
Reverse proxy
=============
Nextcloud can be run through a reverse proxy, which can cache static assets such
as images, CSS or JS files, move the load of handling HTTPS to a different

View File

@@ -21,8 +21,7 @@ If access to a file has been denied for a user, the user can not:
Examples
--------
After installing the File Access Control app as described in
:doc:`../installation/apps_management_installation`
After installing the File Access Control app as described in :doc:`../apps_management`
navigate to the configuration and locate the File Access Control settings.
.. figure:: images/files_access_control_sample_rules.png

View File

@@ -18,8 +18,7 @@ allow access against the owners will.
Example
-------
After installing the Files automated tagging app as described in
:doc:`../installation/apps_management_installation`
After installing the Files automated tagging app as described in :doc:`../apps_management`
navigate to the configuration and locate the Workflow settings.
.. figure:: images/automated_tagging_sample_rule.png

View File

@@ -8,8 +8,7 @@ are tagged with a collaborative tag and have a certain age.
Example
-------
After installing the Retention app as described in
:doc:`../installation/apps_management_installation`
After installing the Retention app as described in :doc:`../apps_management`
navigate to the configuration and locate the Workflow settings.
.. figure:: images/retention_sample.png

View File

@@ -1,6 +1,6 @@
============
Installation
============
=====================================
Installation and server configuration
=====================================
.. toctree::
:maxdepth: 2
@@ -14,3 +14,5 @@ Installation
php_72_installation
selinux_configuration
nginx
harden_server
server_tuning

View File

@@ -5,7 +5,7 @@ Server tuning
Using cron to perform background jobs
-------------------------------------
See :doc:`background_jobs_configuration` for a description and the
See :doc:`../configuration_server/background_jobs_configuration` for a description and the
benefits.
Reducing system load
@@ -28,7 +28,7 @@ Caching
Caching improves performance by storing data, code, and other objects in memory.
Memory cache configuration for the Nextcloud server must be installed and configured.
See :doc:`caching_configuration`.
See :doc:`../configuration_server/caching_configuration`.
Using MariaDB/MySQL instead of SQLite
-------------------------------------

4
go.php
View File

@@ -22,9 +22,9 @@ $mapping = array(
'admin-ldap' => '/admin_manual/configuration_user/user_auth_ldap.html',
'admin-mysql-utf8mb4' => '/admin_manual/configuration_database/mysql_4byte_support.html',
'admin-nginx' => '/admin_manual/installation/nginx.html',
'admin-performance' => '/admin_manual/configuration_server/server_tuning.html',
'admin-performance' => '/admin_manual/installation/server_tuning.html',
'admin-php-fpm' => '/admin_manual/installation/source_installation.html#php-fpm-tips-label',
'admin-php-opcache' => '/admin_manual/configuration_server/server_tuning.html#enable-php-opcache',
'admin-php-opcache' => '/admin_manual/installation/server_tuning.html#enable-php-opcache',
'admin-provisioning-api' => '/admin_manual/configuration_user/user_provisioning_api.html',
'admin-reverse-proxy' => '/admin_manual/configuration_server/reverse_proxy_configuration.html',
'admin-security' => '/admin_manual/configuration_server/harden_server.html',