fix(Docker): change ENV arg from 'prod' to 'production' to match actual ini filename

This commit is contained in:
2025-10-29 23:26:45 +01:00
parent 70e45fb56e
commit d021c49906
11 changed files with 453 additions and 40 deletions

View File

@@ -0,0 +1,33 @@
; php.ini für Entwicklung
include = php.common.ini
[opcache]
; Opcache komplett deaktiviert für lokale Entwicklung
; Keine Caching-Probleme bei Code-Änderungen
opcache.enable=0
opcache.enable_cli=0
; Alternative: Opcache aktiviert mit sofortiger Revalidierung
; Nur aktivieren wenn Performance wichtiger ist als sofortige Änderungen
;opcache.enable=1
;opcache.enable_cli=1
;opcache.memory_consumption=128
;opcache.max_accelerated_files=10000
;opcache.revalidate_freq=0
;opcache.validate_timestamps=1
;opcache.interned_strings_buffer=16
opcache.file_cache=
realpath_cache_ttl=0
display_errors = On
display_startup_errors = On
error_reporting = E_ALL
memory_limit = 512M
upload_max_filesize = 20M
post_max_size = 25M
max_execution_time = 60
; Xdebug-Einstellungen können auch hier hinzugefügt werden, falls gewünscht