Add Dockerfile and supervisord for PHP deployment

This commit is contained in:
Tim Bendt
2025-11-26 13:26:30 -05:00
parent c520b7df89
commit d876232b5f
3 changed files with 63 additions and 3 deletions

16
supervisord.conf Normal file
View File

@@ -0,0 +1,16 @@
[supervisord]
nodaemon=true
[program:php-fpm]
command=php-fpm
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
[program:nginx]
command=nginx -g 'daemon off;'
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0