summaryrefslogtreecommitdiffstats
path: root/roles/cgit/meta/argument_specs.yml
blob: 9dbe28b167441454bd9747e354ca9757a10569e1 (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
33
34
35
36
---
argument_specs:
  main:
    options:
      cgit_hostname:
        type: "str"
        description: "Public 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"
      cgit_proxy_host:
        type: "str"
        description: "Inventory hostname of the proxy container to deploy vhost on"
        default: "proxy.home.arpa"