Dockerize: Add Dockerfile, nginx.conf, supervisord.conf with clear_env=no fix

This commit is contained in:
z0rayy
2026-06-10 17:11:13 +07:00
parent 40711a766e
commit 7e956cc02e
5 changed files with 120 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
[supervisord]
nodaemon=true
logfile=/var/log/supervisord.log
pidfile=/var/run/supervisord.pid
[program:nginx]
command=nginx -g "daemon off;"
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:php-fpm]
command=php-fpm -F
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0