mirror of
https://github.com/release-engineering/dist-git.git
synced 2025-02-23 23:12:55 +00:00
16 lines
541 B
Django/Jinja
16 lines
541 B
Django/Jinja
# default: off
|
|
# description: The git server offers access to git repositories
|
|
service git
|
|
{
|
|
disable = no
|
|
type = UNLISTED
|
|
port = {{ git_port }}
|
|
socket_type = stream
|
|
wait = no
|
|
groups = yes
|
|
group = {{ git_group }}
|
|
user = nobody
|
|
server = {{ git_server }}
|
|
server_args = {{ git_server_args }} --base-path={{ git_basepath }} --base-path-relaxed
|
|
log_on_failure += HOST
|
|
}
|