mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2025-12-13 05:26:47 +00:00
23 lines
570 B
Plaintext
23 lines
570 B
Plaintext
[supervisord]
|
|
nodaemon=true
|
|
user=root
|
|
logfile=/var/log/supervisor/supervisord.log
|
|
pidfile=/var/run/supervisord.pid
|
|
|
|
[program:php]
|
|
command=%(ENV_SUPERVISOR_PHP_COMMAND)s
|
|
user=%(ENV_SUPERVISOR_PHP_USER)s
|
|
environment=LARAVEL_SAIL="1"
|
|
stdout_logfile=/dev/stdout
|
|
stdout_logfile_maxbytes=0
|
|
stderr_logfile=/dev/stderr
|
|
stderr_logfile_maxbytes=0
|
|
|
|
[program:reverb]
|
|
command=php /var/www/html/artisan reverb:start --host="0.0.0.0" --port=8080
|
|
autostart=true
|
|
autorestart=true
|
|
user=%(ENV_SUPERVISOR_PHP_USER)s
|
|
redirect_stderr=true
|
|
stdout_logfile=/var/www/html/storage/logs/reverb.log
|