Llama-Deployment-17.ini
· 318 B · INI
Неформатований
[Unit]
Description=gunicorn daemon
After=network.target
[Service]
User=deployer
Group=www-data
WorkingDirectory=/home/deployer/llama
ExecStart=/home/deployer/llama/venv/bin/gunicorn --access-logfile - --workers 3 --bind unix:/home/deployer/llama/llama.sock llama.wsgi:application
[Install]
WantedBy=multi-user.target
1 | [Unit] |
2 | Description=gunicorn daemon |
3 | After=network.target |
4 | |
5 | [Service] |
6 | User=deployer |
7 | Group=www-data |
8 | WorkingDirectory=/home/deployer/llama |
9 | ExecStart=/home/deployer/llama/venv/bin/gunicorn --access-logfile - --workers 3 --bind unix:/home/deployer/llama/llama.sock llama.wsgi:application |
10 | |
11 | [Install] |
12 | WantedBy=multi-user.target |