Last active
June 26, 2019 04:20
-
-
Save macknilan/045860d00e7b9957ddb4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
COMO ROOT EN /etc/supervisor/conf.d/myapp.conf | |
[program:myapp] | |
command=/bin/gunicorn_start.sh ; COMANDO PARA INICIAR LA APP | |
user=muebleria ; USUARIO QUE CORRE LA APP | |
stdout_logfile=/home/muebleria/LandingPage/landingpage/logs/supervisor.log ; DONDE SE ALACAMENA LOS LOGS DE LA APP | |
autostart=true ; AUTO INICIA LA APP | |
autorestart=true ; AUTO REINCIA LA APP | |
redirect_stderr=true ; SALVAR stderr EN EL MISMO LOG |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment