ansible-role-gitea/templates/gitea.service.j2

17 lines
400 B
Plaintext
Raw Normal View History

2017-01-10 15:09:34 -06:00
[Unit]
Description=Gitea git server
After=network.target
[Service]
User={{ gitea_user }}
Group={{ gitea_group }}
2020-09-18 10:46:50 -05:00
ExecStart=/usr/local/bin/gitea web -c /etc/gitea/gitea.ini --custom-path {{ gitea_home }}/custom/
2017-01-10 15:09:34 -06:00
Restart=on-failure
WorkingDirectory={{ gitea_home }}
{% if gitea_systemd_cap_net_bind_service %}
AmbientCapabilities=CAP_NET_BIND_SERVICE
{% endif %}
2017-01-10 15:09:34 -06:00
[Install]
WantedBy=multi-user.target