@@ -3799,6 +3799,26 @@ specifications. For those, have an opt-out.
3799
3799
3800
3800
WARNING: only use this if you know what you are doing
3801
3801
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
+
3802
3822
simpleSignUpLink.shown
3803
3823
^^^^^^^^^^^^^^^^^^^^^^
3804
3824
@@ -3886,6 +3906,43 @@ Warning: This heavily decreases the performance of the server and is only
3886
3906
meant to debug/profile the query interaction manually.
3887
3907
Also, it might log sensitive data into a plain text file.
3888
3908
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
+
3889
3946
redis_log_file
3890
3947
^^^^^^^^^^^^^^
3891
3948
0 commit comments