blob: 48676be92ca5cf282a2e60cf4448e9acc14853ba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
---
argument_specs:
main:
options:
cgit_hostname:
type: "str"
description: "Hostname for cgit (e.g. git.example.com)"
default: "git.example.com"
cgit_port:
type: "int"
description: "Port lighttpd listens on internally"
default: 3000
cgit_repos_dir:
type: "str"
description: "Directory containing bare git repositories"
default: "/srv/git"
cgit_title:
type: "str"
description: "cgit index page title"
default: "git"
cgit_description:
type: "str"
description: "cgit index page description"
default: "personal git repositories"
cgit_clone_prefix:
type: "str"
description: "Clone URL prefix shown in cgit UI"
default: "ssh://{{ cgit_ssh_user }}@{{ cgit_hostname }}"
cgit_ssh_user:
type: "str"
description: "System user for SSH git push access"
default: "git"
|