mirror of
https://github.com/flancian/garden.git
synced 2026-08-07 15:06:19 +00:00
082d6c7608
Affected files: "agora service.md"
18 lines
447 B
Markdown
18 lines
447 B
Markdown
- [[push]] [[systemd]]
|
|
|
|
```
|
|
agora@thecla:/etc/systemd/system# cat agora.service
|
|
[Unit]
|
|
Description=uWSGI instance to serve agora-server
|
|
After=network.target
|
|
|
|
[Service]
|
|
User=agora
|
|
Group=agora
|
|
WorkingDirectory=/home/agora/agora-server
|
|
Environment="PATH=/home/agora/agora-server/venv/bin" "FLASK_ENV=production" "AGORA_CONFIG=ProductionConfig"
|
|
ExecStart=/home/agora/agora-server/venv/bin/uwsgi --ini prod.ini
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
``` |