fix: configuration paths

This commit is contained in:
Iain Learmonth 2026-05-25 08:49:04 +01:00
parent 2ca3066804
commit 968190a3ed
2 changed files with 13 additions and 1 deletions

View file

@ -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
ansible.builtin.template:
src: etc/motd.d/10-data-plate.txt

View file

@ -106,7 +106,7 @@ database:
acme_url: https://acme-v02.api.letsencrypt.org/directory
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_challenge_type: HTTP-01
tls_letsencrypt_listen: ":http"