18 lines
389 B
Plaintext
18 lines
389 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
|
|
[program:php-fpm]
|
|
command=/usr/local/sbin/php-fpm --nodaemonize
|
|
autostart=true
|
|
autorestart=true
|
|
|
|
[program:nginx]
|
|
command=nginx -g "daemon off;"
|
|
autostart=true
|
|
autorestart=true
|
|
|
|
[program:reverb]
|
|
command=php -d upload_max_filesize=50M -d post_max_size=55M -d memory_limit=256M /app/artisan reverb:start --host=0.0.0.0 --port=8085
|
|
autostart=true
|
|
autorestart=true
|