Feature/404multidev * Fix socket location * Fix socket location * Fix socket location * Fix socket location * To fix sock file issue * fix issues with clear_env = no * Ondemand fpm and deploy update * Merged develop into feature/404multidev * Merged develop into feature/404multidev * Add config map for www pool and supd Approved-by: Rachit Bhargava
61 lines
2.2 KiB
YAML
61 lines
2.2 KiB
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: supervisord-cm
|
|
namespace: medicalalert-web
|
|
labels:
|
|
app: medicalalert-web
|
|
data:
|
|
supervisord.conf: |
|
|
[unix_http_server]
|
|
file=/tmp/supervisor.sock ; (the path to the socket file)
|
|
username=nobody
|
|
password=nobody
|
|
|
|
[supervisord]
|
|
logfile=/tmp/supervisord.log ; (main log file;default $CWD/supervisord.log)
|
|
logfile_maxbytes=50MB ; (max main logfile bytes b4 rotation;default 50MB)
|
|
logfile_backups=10 ; (num of main logfile rotation backups;default 10)
|
|
loglevel=trace ; (log level;default info; others: debug,warn,trace)
|
|
pidfile=/tmp/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
|
|
nodaemon=false ; (start in foreground if true;default false)
|
|
minfds=1024 ; (min. avail startup file descriptors;default 1024)
|
|
minprocs=200 ; (min. avail process descriptors;default 200)
|
|
user=root ; (default is current user, required if root)
|
|
|
|
; the below section must remain in the config file for RPC
|
|
; (supervisorctl/web interface) to work, additional interfaces may be
|
|
; added by defining them in separate rpcinterface: sections
|
|
[rpcinterface:supervisor]
|
|
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
|
|
|
[supervisorctl]
|
|
serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket
|
|
|
|
[program:php-fpm7]
|
|
command=/usr/sbin/php-fpm7.4 --nodaemonize --fpm-config=/etc/php/7.4/fpm/pool.d/www.conf
|
|
autostart=true
|
|
autorestart=true
|
|
priority=5
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:nginx]
|
|
command=/usr/sbin/nginx -g "daemon off;"
|
|
autostart=true
|
|
autorestart=true
|
|
priority=10
|
|
stdout_events_enabled=true
|
|
stderr_events_enabled=true
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[eventlistener:stdout]
|
|
command = supervisor_stdout
|
|
buffer_size = 100
|
|
events = PROCESS_LOG
|
|
result_handler = supervisor_stdout:event_handler |