|
70 | 70 | // A list of the sources/hostnames that can be reached by application SSR calls. |
71 | 71 | // This is used wherever users can provide URLs/hosts in-platform, like for webhooks. |
72 | 72 | // Host-specific functionality (usually controlled via other options) like auth |
73 | | - // or user avatars for example, won't use this list. |
74 | | - // Space seperated if multiple. Can use '*' as a wildcard. |
| 73 | + // or user avatars, for example, won't use this list. |
| 74 | + // Space separated if multiple. Can use '*' as a wildcard. |
75 | 75 | // Values will be compared prefix-matched, case-insensitive, against called SSR urls. |
76 | 76 | // Defaults to allow all hosts. |
77 | 77 | 'ssr_hosts' => env('ALLOWED_SSR_HOSTS', '*'), |
|
80 | 80 | // Integer value between 0 (IP hidden) to 4 (Full IP usage) |
81 | 81 | 'ip_address_precision' => env('IP_ADDRESS_PRECISION', 4), |
82 | 82 |
|
83 | | - // Application timezone for back-end date functions. |
| 83 | + // Application timezone for stored date/time values. |
84 | 84 | 'timezone' => env('APP_TIMEZONE', 'UTC'), |
| 85 | + // Application timezone for displayed date/time values in the UI. |
| 86 | + 'display_timezone' => env('APP_DISPLAY_TIMEZONE', env('APP_TIMEZONE', 'UTC')), |
85 | 87 |
|
86 | 88 | // Default locale to use |
87 | 89 | // A default variant is also stored since Laravel can overwrite |
|
0 commit comments