15 lines
342 B
Markdown
15 lines
342 B
Markdown
|
|
---
|
||
|
|
title: Restarting Server
|
||
|
|
order: 4
|
||
|
|
---
|
||
|
|
|
||
|
|
# Restarting Server
|
||
|
|
|
||
|
|
If you use Supervisor to keep your server alive, you might want to restart it just like `queue:restart` does.
|
||
|
|
|
||
|
|
To do so, consider using the `websockets:restart`. In a maximum of 10 seconds, the server will be restarted automatically.
|
||
|
|
|
||
|
|
```bash
|
||
|
|
php artisan websockets:restart
|
||
|
|
```
|