fix: configuration paths
This commit is contained in:
parent
2ca3066804
commit
968190a3ed
2 changed files with 13 additions and 1 deletions
|
|
@ -1,4 +1,16 @@
|
||||||
---
|
---
|
||||||
|
- name: Podman Nginx | PATCH | Open firewall for http and https services
|
||||||
|
ansible.posix.firewalld:
|
||||||
|
zone: "{{ podman_nginx_firewalld_zone }}"
|
||||||
|
service: "{{ item }}"
|
||||||
|
permanent: true
|
||||||
|
immediate: true
|
||||||
|
state: enabled
|
||||||
|
become: true
|
||||||
|
with_items:
|
||||||
|
- http
|
||||||
|
- https
|
||||||
|
|
||||||
- name: Podman Headscale | PATCH | Install data plate
|
- name: Podman Headscale | PATCH | Install data plate
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
src: etc/motd.d/10-data-plate.txt
|
src: etc/motd.d/10-data-plate.txt
|
||||||
|
|
|
||||||
|
|
@ -106,7 +106,7 @@ database:
|
||||||
|
|
||||||
acme_url: https://acme-v02.api.letsencrypt.org/directory
|
acme_url: https://acme-v02.api.letsencrypt.org/directory
|
||||||
acme_email: "{{ podman_headscale_acme_email }}"
|
acme_email: "{{ podman_headscale_acme_email }}"
|
||||||
tls_letsencrypt_hostname: "{{ podman_headscape_web_hostname }}"
|
tls_letsencrypt_hostname: "{{ podman_headscale_web_hostname }}"
|
||||||
tls_letsencrypt_cache_dir: /var/lib/headscale/cache
|
tls_letsencrypt_cache_dir: /var/lib/headscale/cache
|
||||||
tls_letsencrypt_challenge_type: HTTP-01
|
tls_letsencrypt_challenge_type: HTTP-01
|
||||||
tls_letsencrypt_listen: ":http"
|
tls_letsencrypt_listen: ":http"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue