- Separate PHP Dockerfiles (dev/prod) with extensions and prod opcache/php.ini optimization - docker-compose-dev: PHP, PostgreSQL, Redis, Messenger, Mailpit, RedisInsight - docker-compose-prod: 2x PHP replicas, PgSQL master/slave with PgBouncer, 2x Messenger, Redis - Makefile with build/start/stop/purge commands - AGENT.md to restrict AI access to the repository Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
447 B
INI
22 lines
447 B
INI
date.timezone = Europe/Paris
|
|
|
|
memory_limit = 256M
|
|
upload_max_filesize = 100M
|
|
post_max_size = 150M
|
|
max_execution_time = 30
|
|
max_input_time = 30
|
|
|
|
expose_php = Off
|
|
display_errors = Off
|
|
display_startup_errors = Off
|
|
log_errors = On
|
|
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
|
|
|
|
realpath_cache_size = 4096K
|
|
realpath_cache_ttl = 600
|
|
|
|
session.cookie_secure = On
|
|
session.cookie_httponly = On
|
|
session.cookie_samesite = Lax
|
|
session.use_strict_mode = 1
|