Skip to content

Commit d613275

Browse files
committed
generate documentation from config.sample.php
1 parent c3643bf commit d613275

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

admin_manual/configuration_server/config_sample_php_parameters.rst

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3799,6 +3799,26 @@ specifications. For those, have an opt-out.
37993799

38003800
WARNING: only use this if you know what you are doing
38013801

3802+
core.login_flow_v2.allowed_user_agents
3803+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3804+
3805+
3806+
::
3807+
3808+
'core.login_flow_v2.allowed_user_agents' => [],
3809+
3810+
This option allows you to specify a list of allowed user agents for the Login Flow V2.
3811+
3812+
If a user agent is not in this list, it will not be allowed to use the Login Flow V2.
3813+
The user agents are defined using regular expressions.
3814+
3815+
WARNING: only use this if you know what you are doing
3816+
3817+
Example: Allow only the Nextcloud Android app to use the Login Flow V2
3818+
'core.login_flow_v2.allowed_user_agents' => ['/Nextcloud-android/i'],
3819+
3820+
Defaults to an empty array.
3821+
38023822
simpleSignUpLink.shown
38033823
^^^^^^^^^^^^^^^^^^^^^^
38043824

@@ -3886,6 +3906,43 @@ Warning: This heavily decreases the performance of the server and is only
38863906
meant to debug/profile the query interaction manually.
38873907
Also, it might log sensitive data into a plain text file.
38883908

3909+
query_log_file_requestid
3910+
^^^^^^^^^^^^^^^^^^^^^^^^
3911+
3912+
3913+
::
3914+
3915+
'query_log_file_requestid' => '',
3916+
3917+
Prefix all queries with the requestid when set to `yes`
3918+
3919+
Requires `query_log_file` to be set.
3920+
3921+
query_log_file_parameters
3922+
^^^^^^^^^^^^^^^^^^^^^^^^^
3923+
3924+
3925+
::
3926+
3927+
'query_log_file_parameters' => '',
3928+
3929+
Add all query parameters to the query log entry when set to `yes`
3930+
3931+
Requires `query_log_file` to be set.
3932+
Warning: This will log sensitive data into a plain text file.
3933+
3934+
query_log_file_backtrace
3935+
^^^^^^^^^^^^^^^^^^^^^^^^
3936+
3937+
3938+
::
3939+
3940+
'query_log_file_backtrace' => '',
3941+
3942+
Add a backtrace to the query log entry when set to `yes`
3943+
3944+
Requires `query_log_file` to be set.
3945+
38893946
redis_log_file
38903947
^^^^^^^^^^^^^^
38913948

0 commit comments

Comments
 (0)