Skip to content

Instantly share code, notes, and snippets.

@Madawar
Created June 13, 2024 10:30
Show Gist options
  • Save Madawar/aae019b85d3c43122d17aec2db6fa6a5 to your computer and use it in GitHub Desktop.
Save Madawar/aae019b85d3c43122d17aec2db6fa6a5 to your computer and use it in GitHub Desktop.
sail reverb
[supervisord]
nodaemon=true
user=root
logfile=/var/log/supervisor/supervisord.log
pidfile=/var/run/supervisord.pid
minfds=10000
[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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment