server.conf 353 B

12345678910111213141516
  1. #!/bin/bash
  2. [program:PROGRAM]
  3. # The process_name is always the same as the program
  4. process_name = PROCESS_NAME
  5. command= COMMAND
  6. directory= DIRECTORY
  7. autostart = true
  8. startsecs = 5
  9. autorestart = true
  10. startretries = 3
  11. user = USER
  12. redirect_stderr = true
  13. stdout_logfile_maxbytes = 20MB
  14. stdout_logfile_backups = 10
  15. stdout_logfile = /var/log/test-server.log