Compare commits

..

2 commits

7 changed files with 37 additions and 17 deletions

View file

@ -1,18 +1,6 @@
# vim: ft=yaml.ansible
# code: language=ansible
---
apps_include:
- nginx
- postfix
- ipfs
- jitsi
- joplin
- monerod
- nextcloud
- snowflake
- restic
- watchtower
jitsi_passwords:
jicofo_auth: "{{ vault_jitsi_passwords.jicofo_auth }}"
jvb_auth: "{{ vault_jitsi_passwords.jvb_auth }}"

View file

@ -4,5 +4,3 @@
apps_include:
- minecraft
- watchtower
apps_create_shared_docker_network: false

View file

@ -1,6 +1,18 @@
# vim: ft=yaml.ansible
# code: language=ansible
---
apps_include:
- nginx
- postfix
- ipfs
- jitsi
- joplin
- monerod
- nextcloud
- snowflake
- restic
- watchtower
base_domain: sapti.me
internal_subnet: 10.2.16.0/24
postgresql_version: 14

View file

@ -1,6 +1,17 @@
# vim: ft=yaml.ansible
# code: language=ansible
---
apps_include:
- nginx
- postfix
- ipfs
- jitsi
- joplin
- nextcloud
- snowflake
- restic
- watchtower
base_domain: staging.sapti.me
internal_subnet: 10.2.19.0/24
postgresql_version: 14

View file

@ -79,7 +79,7 @@ apps_vars:
extra_tasks: true
domain: cloud.{{ apps_base_domain }}
port: 80
version: 29.0.4-apache
version: 29.0.6-apache
redis_version: 7-alpine
searxng:
@ -124,7 +124,8 @@ apps_vars:
extra_tasks: false
version: '1.7.1'
apps_include: "{{ apps_vars | dict2items | map(attribute='key') | list }}"
apps_exclude: []
apps_include: "{{ apps_vars | dict2items | map(attribute='key') | list | difference(apps_exclude) }}"
apps_backup: "{{ apps_vars | dict2items | selectattr('value.backup', 'true') | map(attribute='key') | list | intersect(apps_include) }}"
apps_proxied: "{{ apps_vars | dict2items | selectattr('value.domain', 'defined') | map(attribute='key') | list | intersect(apps_include) }}"
apps_torified: "{{ apps_vars | dict2items | selectattr('value.onion', 'defined') | map(attribute='key') | list | intersect(apps_include) }}"

View file

@ -8,7 +8,7 @@
ipam_config:
- subnet: 172.17.2.0/24
- subnet: fd02::/64
state: "{{ 'present' if apps_create_shared_docker_network is undefined or apps_create_shared_docker_network else 'absent' }}"
state: "{{ 'present' if 'caddy' in apps_include or 'nginx' in apps_include else 'absent' }}"
- name: Create Docker network for Postfix
community.docker.docker_network:

View file

@ -3,6 +3,7 @@
{% for env in proxy_environments %}
# BEGIN Environment: {{ env }}
{% if 'nextcloud' in proxy_vars[env].app01.apps_include %}
cloud.{{ proxy_vars[env].app01.base_domain }} {
tls {{ tls_email }} {
@ -28,6 +29,8 @@ cloud.{{ proxy_vars[env].app01.base_domain }} {
respond 403
{% endif %}
}
{% endif %}
{% if 'ipfs' in proxy_vars[env].app01.apps_include %}
ipfs-gateway.{{ proxy_vars[env].app01.base_domain }},
*.ipfs.ipfs-gateway.{{ proxy_vars[env].app01.base_domain }},
@ -76,6 +79,8 @@ ipfs.local.{{ proxy_vars[env].app01.base_domain }} {
respond 403
}
{% endif %}
{% if 'joplin' in proxy_vars[env].app01.apps_include %}
joplin.{{ proxy_vars[env].app01.base_domain }} {
tls {{ tls_email }} {
@ -101,6 +106,8 @@ joplin.{{ proxy_vars[env].app01.base_domain }} {
respond 403
{% endif %}
}
{% endif %}
{% if 'jitsi' in proxy_vars[env].app01.apps_include %}
meet.{{ proxy_vars[env].app01.base_domain }} {
tls {{ tls_email }} {
@ -126,6 +133,8 @@ meet.{{ proxy_vars[env].app01.base_domain }} {
respond 403
{% endif %}
}
{% endif %}
{% if 'monerod' in proxy_vars[env].app01.apps_include %}
xmr.local.{{ proxy_vars[env].app01.base_domain }} {
tls {{ tls_email }} {
@ -147,6 +156,7 @@ xmr.local.{{ proxy_vars[env].app01.base_domain }} {
respond 403
}
{% endif %}
# END Environment: {{ env }}
{% endfor %}