Server management
Run background workers with Supervisor
Run background workers with Supervisor
Supervisor keeps long-running processes alive — queue workers, WebSocket servers and similar services that must run continuously. SoftServer manages Supervisor from the panel.
Add a worker
- Open your server and go to the Supervisor section. The panel installs Supervisor if needed.
- Add a program: the command to run, the number of processes, and options such as auto-restart.
- Save. Supervisor starts the process and restarts it automatically if it stops or the server reboots.
Common uses
- Laravel queue workers (
php artisan queue:work). - Real-time servers (WebSockets, Reverb).
- Any always-on background service your app needs.
Manage programs
Start, stop or restart programs and check their status from the panel. This gives you reliable background processing without editing Supervisor config files by hand.