16 lines
337 B
Plaintext
16 lines
337 B
Plaintext
|
[Unit]
|
||
|
Description=Gitea git server
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
User={{ gitea_user }}
|
||
|
ExecStart=/usr/local/bin/gitea web -c /etc/gitea/gitea.ini
|
||
|
Restart=on-failure
|
||
|
WorkingDirectory={{ gitea_home }}
|
||
|
{% if gitea_systemd_cap_net_bind_service %}
|
||
|
AmbientCapabilities=CAP_NET_BIND_SERVICE
|
||
|
{% endif %}
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|