src.dualinventive.com/devops/ansible/external-roles/gitea/templates/gitea.service.j2

27 lines
655 B
Django/Jinja

[Unit]
Description=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]
# Modify these two values and uncomment them if you have
# repos with lots of files and get an HTTP error 500 because
# of that
###
#LimitMEMLOCK=infinity
#LimitNOFILE=65535
Type=simple
User={{ gitea_user }}
Group={{ gitea_user }}
WorkingDirectory={{ gitea_user_home }}/gitea
ExecStart={{ gitea_binary_file_latest }} web -p {{ gitea_http_port }}
Restart=always
Environment=USER={{ gitea_user }} HOME={{ gitea_user_home }}
[Install]
WantedBy=multi-user.target