- Add example secret files for `app_key`, `db_user_password`, and `redis_password`. - Introduce `local.vault.yml.example` for Ansible Vault encryption of local secrets. - Create migration and setup scripts for transitioning from `.env.local` to secrets files. - Update `docker-compose.local.yml` to adopt Docker Secrets and `_FILE` pattern for local configurations. - Add deployment playbooks and enhanced logging configurations for local development.
24 lines
549 B
Plaintext
24 lines
549 B
Plaintext
[global]
|
|
daemonize = no
|
|
error_log = /proc/self/fd/2
|
|
|
|
[www]
|
|
; Unix user/group of processes
|
|
user = appuser
|
|
group = appuser
|
|
|
|
; The address on which to accept FastCGI requests.
|
|
; Use 0.0.0.0:9000 to listen on all interfaces (required for Docker networking)
|
|
listen = 0.0.0.0:9000
|
|
|
|
; Clear environment in FPM workers
|
|
clear_env = no
|
|
|
|
; Catch output from PHP workers
|
|
catch_workers_output = yes
|
|
|
|
; Redirect worker stdout and stderr into main error log
|
|
access.log = /proc/self/fd/2
|
|
php_admin_value[error_log] = /proc/self/fd/2
|
|
php_admin_flag[log_errors] = on
|