blob: f5c2645a4a023d8875e68c27573180240441e25c (
plain)
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
|
---
# 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'
|