diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2024-05-12 17:33:39 +0200 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2024-05-12 17:36:32 +0200 |
commit | fdd5293dd05890434c5b1660bfc44d493a4f4056 (patch) | |
tree | 204e3a16a6d301c957aa3126d7fcf0ea188b2f32 /host_vars | |
parent | a355ee21c15e915f394952abe76703d7865c991b (diff) | |
download | rules-fdd5293dd05890434c5b1660bfc44d493a4f4056.tar.gz |
feat(roles/cgit): new variables structure
Diffstat (limited to 'host_vars')
-rw-r--r-- | host_vars/ams-dcontroller-01.yml | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/host_vars/ams-dcontroller-01.yml b/host_vars/ams-dcontroller-01.yml index 0c319d6..9bca6ee 100644 --- a/host_vars/ams-dcontroller-01.yml +++ b/host_vars/ams-dcontroller-01.yml @@ -7,13 +7,14 @@ sshd__listen_port: "{{ ansible_port }}" relayd__connected_hosts: servers acme_connected_hosts: servers -cgit_listen_port: 8002 -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 }}" +cgit__listen_port: 8002 +cgit__domain_name: git.rgoncalves.se +cgit__title: 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 }}" nextcloud__listen_port: 8003 nextcloud__domain_name: cloud.rgoncalves.se @@ -47,9 +48,9 @@ __services: type: static - name: git - domain: "{{ cgit_domain_name }}" + domain: "{{ cgit__domain_name }}" protocol: tcp - port: "{{ cgit_listen_port }}" + port: "{{ cgit__listen_port }}" - name: nextcloud domain: "{{ nextcloud__domain_name }}" |