From a857eb82ec9c4a79ad5e41462e2ab82c2660982e Mon Sep 17 00:00:00 2001 From: Kumar Date: Tue, 23 Nov 2021 09:59:08 -0500 Subject: initial commit --- group_vars/all/vars.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 group_vars/all/vars.yaml (limited to 'group_vars/all/vars.yaml') 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' -- cgit v1.2.3