Skip to main content

Supervisor for reverb

This enables the viewing tickets and more cool features on Ticaga.

Install Supervisor:

sudo dnf install epel-release -y
sudo dnf install supervisor -y

Configure set-up for Reverb:

sudo nano /etc/supervisord.d/reverb.ini

Paste in the configuration:

[program:reverb]
command=/usr/bin/php /var/www/ticaga/artisan reverb:start --host=0.0.0.0 --port=8080
directory=/var/www/ticaga
user=apache
autostart=true
autorestart=true
redirect_stderr=true
stdout_logfile=/var/www/ticaga/storage/logs/reverb.log
stderr_logfile=/var/www/ticaga/storage/logs/reverb-error.log
stopwaitsecs=3600

Enable Supervisor:

sudo systemctl enable supervisord
sudo systemctl start supervisord