ID: 0586f338482e9a04be3a52937496a66380ad254c
22 lines
—
513B —
View raw
| # systemd service file for starting the web app
#
# How to use this file:
# - copy this file to /etc/systemd/system
# - edit the variables below accordingly
# - systemctl enable website.service
# - systemctl start website.service
[Unit]
Description=DOKK website app
After=network.target
[Service]
ExecStart=/home/fuseki/dokk.org/venv/bin/gunicorn --bind localhost:8080 app:application
User=fuseki
Group=fuseki
WorkingDirectory=/home/fuseki/dokk.org
Restart=always
[Install]
WantedBy=multi-user.target
|