diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2023-01-22 19:51:36 +0100 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2023-04-02 11:45:09 +0200 |
commit | 0c70ea19a91fa28cc5f97364ce1276ad5ae6f898 (patch) | |
tree | 34fc0e5817a32d8ef50341c464562385428a0d5a /host_vars | |
parent | 1cdb3d7f5aa68be5d90cfbbbc69918ac7823a8ae (diff) | |
download | rules-0c70ea19a91fa28cc5f97364ce1276ad5ae6f898.tar.gz |
feat(roles/cgit): add argument specs
Diffstat (limited to 'host_vars')
-rw-r--r-- | host_vars/dc0.yml | 12 | ||||
-rw-r--r-- | host_vars/stack0-dc1.yml | 1 |
2 files changed, 10 insertions, 3 deletions
diff --git a/host_vars/dc0.yml b/host_vars/dc0.yml index f0866ff..2c7461a 100644 --- a/host_vars/dc0.yml +++ b/host_vars/dc0.yml @@ -8,6 +8,14 @@ sshd_listen_port: "{{ ansible_port }}" relayd_connected_hosts: servers acme_connected_hosts: servers +cgit_listen_port: 1235 +cgit_domain_name: git.rgoncalves.se +cgit_favicon_url: "https://{{ __domain_name }}/img/favicon.ico" +cgit_logo_url: "https://{{ __domain_name }}/img/favicon.ico" +cgit_css_url: "https://{{ __domain_name }}/style/cgit.css" +cgit_description: development hub +cgit_readme_url: https://{{ __domain_name }}" + __is_vm: true __ip: @@ -33,6 +41,6 @@ __services: port: 443 - name: git - domain: git.rgoncalves.se + domain: "{{ cgit_domain_name }}" protocol: tcp - port: 1235 + port: "{{ cgit_listen_port }}" diff --git a/host_vars/stack0-dc1.yml b/host_vars/stack0-dc1.yml index be8f1a3..5971323 100644 --- a/host_vars/stack0-dc1.yml +++ b/host_vars/stack0-dc1.yml @@ -1,6 +1,5 @@ --- -cgit_authenticate: true cgit__root_desc: private - development hub __is_vm: true |