pagure_docs_web.service 504 B

12345678910111213141516
  1. [Unit]
  2. Description=Pagure docs web application
  3. After=postgresql.service mariadb.service mysqld.service redis.target
  4. Documentation=https://pagure.io/pagure
  5. [Service]
  6. 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
  7. Type=simple
  8. User=git
  9. Group=git
  10. Restart=on-failure
  11. [Install]
  12. WantedBy=multi-user.target