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
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@

::

'instanceid' => '',

Check failure on line 224 in admin_manual/configuration_server/config_sample_php_parameters.rst

View workflow job for this annotation

GitHub Actions / Lint RST files

OMG TABS!!!1 (horizontal-tab)

This is a unique identifier for your Nextcloud installation, created
automatically by the installer. This example is for documentation only,
Expand All @@ -234,7 +234,7 @@

::

'serverid' => -1,

Check failure on line 237 in admin_manual/configuration_server/config_sample_php_parameters.rst

View workflow job for this annotation

GitHub Actions / Lint RST files

OMG TABS!!!1 (horizontal-tab)

This is a unique identifier for your server.

Expand All @@ -254,7 +254,7 @@

::

'passwordsalt' => '',

Check failure on line 257 in admin_manual/configuration_server/config_sample_php_parameters.rst

View workflow job for this annotation

GitHub Actions / Lint RST files

OMG TABS!!!1 (horizontal-tab)

The salt used to hash all passwords, auto-generated by the Nextcloud
installer. (There are also per-user salts.) If you lose this salt, you lose
Expand All @@ -269,7 +269,7 @@

::

'secret' => '',

Check failure on line 272 in admin_manual/configuration_server/config_sample_php_parameters.rst

View workflow job for this annotation

GitHub Actions / Lint RST files

OMG TABS!!!1 (horizontal-tab)

Secret used by Nextcloud for various purposes, e.g., to encrypt data. If you
lose this string, there will be data corruption.
Expand All @@ -280,7 +280,7 @@

::

'trusted_domains' => [

Check failure on line 283 in admin_manual/configuration_server/config_sample_php_parameters.rst

View workflow job for this annotation

GitHub Actions / Lint RST files

OMG TABS!!!1 (horizontal-tab)
'demo.example.org',
'otherdomain.example.org',
'10.111.112.113',
Expand Down Expand Up @@ -362,8 +362,9 @@

'dbhost' => '',

Your host server name, for example ``localhost``, ``hostname``,
``hostname.example.com``, or the IP address.
The host server name/address for Nextcloud to connect to the database service,
for example, ``localhost``, ``hostname``, ``hostname.example.com``, or the
IP address.

To specify a port, use ``hostname:####``; for IPv6 addresses, use the URI notation ``[ip]:port``.
To specify a Unix socket, use ``localhost:/path/to/directory/containing/socket`` or
Expand Down Expand Up @@ -2183,7 +2184,7 @@
.. warning::

Enabling this comes with some CRITICAL trade-offs:

Check failure on line 2187 in admin_manual/configuration_server/config_sample_php_parameters.rst

View workflow job for this annotation

GitHub Actions / Lint RST files

trailing whitespace (trailing-whitespace)
- If team folder "Advanced Permissions" (ACLs) are used, activities do not
respect the permissions and therefore all users see all activities, even
for files and directories they do not have access to.
Expand Down Expand Up @@ -2876,16 +2877,16 @@
\Memcached::OPT_SEND_TIMEOUT => 50,
\Memcached::OPT_RECV_TIMEOUT => 50,
\Memcached::OPT_POLL_TIMEOUT => 50,

Check failure on line 2880 in admin_manual/configuration_server/config_sample_php_parameters.rst

View workflow job for this annotation

GitHub Actions / Lint RST files

trailing whitespace (trailing-whitespace)
// Enable compression
\Memcached::OPT_COMPRESSION => true,

Check failure on line 2883 in admin_manual/configuration_server/config_sample_php_parameters.rst

View workflow job for this annotation

GitHub Actions / Lint RST files

trailing whitespace (trailing-whitespace)
// Turn on consistent hashing
\Memcached::OPT_LIBKETAMA_COMPATIBLE => true,

Check failure on line 2886 in admin_manual/configuration_server/config_sample_php_parameters.rst

View workflow job for this annotation

GitHub Actions / Lint RST files

trailing whitespace (trailing-whitespace)
// Enable Binary Protocol
\Memcached::OPT_BINARY_PROTOCOL => true,

Check failure on line 2889 in admin_manual/configuration_server/config_sample_php_parameters.rst

View workflow job for this annotation

GitHub Actions / Lint RST files

trailing whitespace (trailing-whitespace)
// Binary serializer will be enabled if the igbinary PECL module is available
//\Memcached::OPT_SERIALIZER => \Memcached::SERIALIZER_IGBINARY,
],
Expand Down
Loading