From e89ee884a3dd41abfcfb4326ba1c08549aa4c8d7 Mon Sep 17 00:00:00 2001 From: Nextcloud bot Date: Wed, 18 Jun 2025 03:13:31 +0000 Subject: [PATCH] generate documentation from config.sample.php --- .../config_sample_php_parameters.rst | 23 ++++++++++++++----- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/admin_manual/configuration_server/config_sample_php_parameters.rst b/admin_manual/configuration_server/config_sample_php_parameters.rst index bb59920cc..21957995c 100644 --- a/admin_manual/configuration_server/config_sample_php_parameters.rst +++ b/admin_manual/configuration_server/config_sample_php_parameters.rst @@ -281,6 +281,20 @@ You can specify: - The IP address with or without permitted port, e.g., [2001:db8::1]:8080 Using TLS certificates where commonName= is deprecated +cookie_domain +^^^^^^^^^^^^^ + + +:: + + 'cookie_domain' => '', + +The validity domain for cookies, for example '' (cookies will be sent only +the domain that defined it, e.g. 'demo.example.org'), 'demo.example.org' +(cookies will be valid for the domain and all subdomains), ... + +Defaults to '' (safe option) + datadirectory ^^^^^^^^^^^^^ @@ -4002,12 +4016,9 @@ defined in ``OCP\Accounts\IAccountManager``. Values are merged with defaults from ``OC\Accounts\AccountManager``. Example: Set phone property to private scope: - -:: - - 'account_manager.default_property_scope' => [ - \OCP\Accounts\IAccountManager::PROPERTY_PHONE => \OCP\Accounts\IAccountManager::SCOPE_PRIVATE - ] +[ + \OCP\Accounts\IAccountManager::PROPERTY_PHONE => \OCP\Accounts\IAccountManager::SCOPE_PRIVATE +] projects.enabled ^^^^^^^^^^^^^^^^