summaryrefslogtreecommitdiff
path: root/public/fs/etc/systemd/system/pagure_docs_web.service
diff options
context:
space:
mode:
Diffstat (limited to 'public/fs/etc/systemd/system/pagure_docs_web.service')
-rw-r--r--public/fs/etc/systemd/system/pagure_docs_web.service16
1 files changed, 16 insertions, 0 deletions
diff --git a/public/fs/etc/systemd/system/pagure_docs_web.service b/public/fs/etc/systemd/system/pagure_docs_web.service
new file mode 100644
index 0000000..a3002f6
--- /dev/null
+++ b/public/fs/etc/systemd/system/pagure_docs_web.service
@@ -0,0 +1,16 @@
+[Unit]
+Description=Pagure docs web application
+After=postgresql.service mariadb.service mysqld.service redis.target
+Documentation=https://pagure.io/pagure
+
+
+[Service]
+ExecStart=/usr/bin/gunicorn --workers 4 --env PAGURE_CONFIG=/etc/pagure/pagure.cfg --access-logfile /var/log/pagure/access_docs_web.log --error-logfile /var/log/pagure/error_docs_web.log --bind unix:/tmp/.pagure_docs_web.sock pagure.docs_server:APP
+Type=simple
+User=git
+Group=nginx
+Restart=on-failure
+
+
+[Install]
+WantedBy=multi-user.target