Advertisement
Guest User

Untitled

a guest
Mar 11th, 2022
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. # Pterodactyl Queue Worker File
  2. # ----------------------------------
  3.  
  4. [Unit]
  5. Description=Pterodactyl Queue Worker
  6. After=redis-server.service
  7.  
  8. [Service]
  9. # On some systems the user and group might be different.
  10. # Some systems use `apache` or `nginx` as the user and group.
  11. User=www-data
  12. Group=www-data
  13. Restart=always
  14. ExecStart=/usr/bin/php /var/www/fastuser/data/www/panel.redend.xyz/artisan queue:work --queue=high,standard,low --sleep=3 --tries=3
  15. StartLimitInterval=180
  16. StartLimitBurst=30
  17. RestartSec=5s
  18.  
  19. [Install]
  20. WantedBy=multi-user.target
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement