daphne asgi supervisor conf
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | [program:project_asgi_daphne]
directory=/path/to/project/project
command=/path/to/project/env/bin/daphne -u /path/to/project_asgi.sock project.asgi:application
stdout_logfile=/path/to/daphne.log
stderr_logfile=/path/to/daphne_stderr.log
autostart=true
autorestart=true
redirect_stderr=true
|