|
54 | 54 | */ |
55 | 55 | 'passwordsalt' => '', |
56 | 56 |
|
| 57 | +/** |
| 58 | + * Secret used by Nextcloud for various purposes, e.g. to encrypt data. If you |
| 59 | + * lose this string there will be data corruption. |
| 60 | + */ |
| 61 | +'secret' => '', |
| 62 | + |
57 | 63 | /** |
58 | 64 | * Your list of trusted domains that users can log into. Specifying trusted |
59 | 65 | * domains prevents host header poisoning. Do not remove this, as it performs |
|
222 | 228 | */ |
223 | 229 | 'force_locale' => 'en_US', |
224 | 230 |
|
225 | | -/** |
226 | | - * Set the default app to open on login. Use the app names as they appear in the |
227 | | - * URL after clicking them in the Apps menu, such as documents, calendar, and |
228 | | - * gallery. You can use a comma-separated list of app names, so if the first |
229 | | - * app is not enabled for a user then Nextcloud will try the second one, and so |
230 | | - * on. If no enabled apps are found it defaults to the dashboard app. |
231 | | - * |
232 | | - * Defaults to ``dashboard,files`` |
233 | | - */ |
234 | | -'defaultapp' => 'dashboard,files', |
235 | | - |
236 | 231 | /** |
237 | 232 | * ``true`` enables the Help menu item in the user menu (top right of the |
238 | 233 | * Nextcloud Web interface). ``false`` removes the Help item. |
|
245 | 240 | */ |
246 | 241 | 'allow_user_to_change_display_name' => true, |
247 | 242 |
|
| 243 | +/** |
| 244 | + * The directory where the skeleton files are located. These files will be |
| 245 | + * copied to the data directory of new users. Leave empty to not copy any |
| 246 | + * skeleton files. |
| 247 | + * ``{lang}`` can be used as a placeholder for the language of the user. |
| 248 | + * If the directory does not exist, it falls back to non dialect (from ``de_DE`` |
| 249 | + * to ``de``). If that does not exist either, it falls back to ``default`` |
| 250 | + * |
| 251 | + * Defaults to ``core/skeleton`` in the Nextcloud directory. |
| 252 | + */ |
| 253 | +'skeletondirectory' => '/path/to/nextcloud/core/skeleton', |
| 254 | + |
| 255 | + |
| 256 | +/** |
| 257 | + * The directory where the template files are located. These files will be |
| 258 | + * copied to the template directory of new users. Leave empty to not copy any |
| 259 | + * template files. |
| 260 | + * ``{lang}`` can be used as a placeholder for the language of the user. |
| 261 | + * If the directory does not exist, it falls back to non dialect (from ``de_DE`` |
| 262 | + * to ``de``). If that does not exist either, it falls back to ``default`` |
| 263 | + * |
| 264 | + * If this is not set creating a template directory will only happen if no custom |
| 265 | + * ``skeletondirectory`` is defined, otherwise the shipped templates will be used |
| 266 | + * to create a template directory for the user. |
| 267 | + */ |
| 268 | +'templatedirectory' => '/path/to/nextcloud/templates', |
| 269 | + |
| 270 | +/** |
| 271 | + * User session |
| 272 | + */ |
| 273 | + |
248 | 274 | /** |
249 | 275 | * Lifetime of the remember login cookie. This should be larger than the |
250 | 276 | * session_lifetime. If it is set to 0 remember me is disabled. |
|
363 | 389 | */ |
364 | 390 | 'hide_login_form' => false, |
365 | 391 |
|
366 | | -/** |
367 | | - * The directory where the skeleton files are located. These files will be |
368 | | - * copied to the data directory of new users. Leave empty to not copy any |
369 | | - * skeleton files. |
370 | | - * ``{lang}`` can be used as a placeholder for the language of the user. |
371 | | - * If the directory does not exist, it falls back to non dialect (from ``de_DE`` |
372 | | - * to ``de``). If that does not exist either, it falls back to ``default`` |
373 | | - * |
374 | | - * Defaults to ``core/skeleton`` in the Nextcloud directory. |
375 | | - */ |
376 | | -'skeletondirectory' => '/path/to/nextcloud/core/skeleton', |
377 | | - |
378 | | - |
379 | | -/** |
380 | | - * The directory where the template files are located. These files will be |
381 | | - * copied to the template directory of new users. Leave empty to not copy any |
382 | | - * template files. |
383 | | - * ``{lang}`` can be used as a placeholder for the language of the user. |
384 | | - * If the directory does not exist, it falls back to non dialect (from ``de_DE`` |
385 | | - * to ``de``). If that does not exist either, it falls back to ``default`` |
386 | | - * |
387 | | - * If this is not set creating a template directory will only happen if no custom |
388 | | - * ``skeletondirectory`` is defined, otherwise the shipped templates will be used |
389 | | - * to create a template directory for the user. |
390 | | - */ |
391 | | -'templatedirectory' => '/path/to/nextcloud/templates', |
392 | | - |
393 | 392 | /** |
394 | 393 | * If your user backend does not allow password resets (e.g. when it's a |
395 | 394 | * read-only user backend like LDAP), you can specify a custom link, where the |
|
1067 | 1066 | * Options for the Apps folder, Apps store, and App code checker. |
1068 | 1067 | */ |
1069 | 1068 |
|
| 1069 | +/** |
| 1070 | + * Set the default app to open on login. Use the app names as they appear in the |
| 1071 | + * URL after clicking them in the Apps menu, such as documents, calendar, and |
| 1072 | + * gallery. You can use a comma-separated list of app names, so if the first |
| 1073 | + * app is not enabled for a user then Nextcloud will try the second one, and so |
| 1074 | + * on. If no enabled apps are found it defaults to the dashboard app. |
| 1075 | + * |
| 1076 | + * Defaults to ``dashboard,files`` |
| 1077 | + */ |
| 1078 | +'defaultapp' => 'dashboard,files', |
| 1079 | + |
1070 | 1080 | /** |
1071 | 1081 | * When enabled, admins may install apps from the Nextcloud app store. |
1072 | 1082 | * |
|
1344 | 1354 | */ |
1345 | 1355 | 'maintenance_window_start' => 1, |
1346 | 1356 |
|
| 1357 | +/** |
| 1358 | + * Log all LDAP requests into a file |
| 1359 | + * |
| 1360 | + * Warning: This heavily decreases the performance of the server and is only |
| 1361 | + * meant to debug/profile the LDAP interaction manually. |
| 1362 | + * Also, it might log sensitive data into a plain text file. |
| 1363 | + */ |
| 1364 | +'ldap_log_file' => '', |
1347 | 1365 |
|
1348 | 1366 | /** |
1349 | 1367 | * SSL |
|
2035 | 2053 | */ |
2036 | 2054 | 'filesystem_cache_readonly' => false, |
2037 | 2055 |
|
2038 | | -/** |
2039 | | - * Secret used by Nextcloud for various purposes, e.g. to encrypt data. If you |
2040 | | - * lose this string there will be data corruption. |
2041 | | - */ |
2042 | | -'secret' => '', |
2043 | | - |
2044 | 2056 | /** |
2045 | 2057 | * List of trusted proxy servers |
2046 | 2058 | * |
|
2256 | 2268 | */ |
2257 | 2269 | 'redis_log_file' => '', |
2258 | 2270 |
|
2259 | | -/** |
2260 | | - * Log all LDAP requests into a file |
2261 | | - * |
2262 | | - * Warning: This heavily decreases the performance of the server and is only |
2263 | | - * meant to debug/profile the LDAP interaction manually. |
2264 | | - * Also, it might log sensitive data into a plain text file. |
2265 | | - */ |
2266 | | -'ldap_log_file' => '', |
2267 | | - |
2268 | 2271 | /** |
2269 | 2272 | * Enable diagnostics event logging |
2270 | 2273 | * |
|
0 commit comments