25 lines
561 B
SYSTEMD
25 lines
561 B
SYSTEMD
|
[Unit]
|
||
|
Description=Forge Gitea (Git with a cup of tea)
|
||
|
After=syslog.target
|
||
|
After=network.target
|
||
|
After=mysqld.service
|
||
|
After=postgresql.service
|
||
|
After=memcached.service
|
||
|
After=redis.service
|
||
|
|
||
|
[Service]
|
||
|
#LimitMEMLOCK=infinity
|
||
|
#LimitNOFILE=65535
|
||
|
RestartSec=2s
|
||
|
Type=simple
|
||
|
User=git
|
||
|
Group=gitservice
|
||
|
WorkingDirectory=/srv/forge/gitea/bin/gitea
|
||
|
ExecStart=/srv/forge/gitea/bin/gitea/gitea web
|
||
|
Restart=always
|
||
|
Environment=USER=git HOME=/srv/forge/git
|
||
|
#CapabilityBoundingSet=CAP_NET_BIND_SERVICE
|
||
|
#AmbientCapabilities=CAP_NET_BIND_SERVICE
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|