We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf8b789 commit 0a31475Copy full SHA for 0a31475
2 files changed
template/Dockerfile.blade.php
@@ -7,6 +7,7 @@
7
@unless ($prod)
8
ENABLE_XDEBUG=false \
9
@endunless
10
+ PHP_DATE_TIMEZONE=UTC \
11
PHP_MEMORY_LIMIT=256M \
12
PHP_MAX_INPUT_VARS=1000 \
13
PHP_UPLOAD_MAX_FILESIZE=25M \
template/kool-ini.blade.php
@@ -22,6 +22,10 @@
22
; Note: This directive is hardcoded to 0 for the CLI SAPI
23
max_execution_time = @{{ .Env.PHP_MAX_EXECUTION_TIME }}
24
25
+; Default timezone used by all date/time functions.
26
+; https://www.php.net/manual/en/datetime.configuration.php#ini.date.timezone
27
+date.timezone = @{{ .Env.PHP_DATE_TIMEZONE }}
28
+
29
{{-- OPCACHE --}}
30
@if ($prod)
31
[opcache]
0 commit comments