diff options
| author | Kumar <kumar@kumardamani.xyz> | 2021-11-23 14:59:08 +0000 |
|---|---|---|
| committer | Kumar Damani <me@kumardamani.net> | 2022-03-25 19:45:25 +0000 |
| commit | a857eb82ec9c4a79ad5e41462e2ab82c2660982e (patch) | |
| tree | 9ca51ddfb551322bd4d2fa3f949fa8898032632d /group_vars/all/vars.yaml | |
initial commit
Diffstat (limited to 'group_vars/all/vars.yaml')
| -rw-r--r-- | group_vars/all/vars.yaml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/group_vars/all/vars.yaml b/group_vars/all/vars.yaml new file mode 100644 index 0000000..f5c2645 --- /dev/null +++ b/group_vars/all/vars.yaml @@ -0,0 +1,27 @@ +--- + +# the wildcard domain under which all apps will be hosted. +apps_domain: 'kumardamani.net' + +# defines the confs for each app we are going to install. +apps_conf_map: + nextcloud: + port: 31900 + access_domain: 'files.{{ apps_domain }}' + prometheus: + port: 9090 + access_domain: 'metrics.{{ apps_domain }}' + bitwarden: + port: 31901 + access_domain: 'vault.{{ apps_domain }}' + +# list all static websites you plan to host here. +nginx_websites: + - name: 'kumardamani.net' + git_url: 'https://{{ (git_user|default(None)) | urlencode() }}:{{ (git_pass|default(None)) | urlencode() }}@gitlab.com/kdam0/kumardamani.net.git' # noqa yaml + git_version: 'main' + - name: 'amayastuff.com' + git_url: 'https://{{ (git_user|default(None)) | urlencode() }}:{{ (git_pass|default(None)) | urlencode() }}@gitlab.com/kdam0/amayastuff.com.git' # noqa yaml + git_version: 'main' + +vpn_domain: 'kdvpn.crabdance.com' |
