PiHole: Anpassungen für Homer (#77)
task pihole für homer cors Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#77 Co-Authored-By: mg <mg@noreply.git.mgrote.net> Co-Committed-By: mg <mg@noreply.git.mgrote.net>
This commit is contained in:
parent
2888d3c326
commit
9f0e771733
2 changed files with 9 additions and 1 deletions
|
@ -19,3 +19,5 @@
|
||||||
- rule: allow
|
- rule: allow
|
||||||
to_port: 68
|
to_port: 68
|
||||||
comment: 'pihole-dhcp'
|
comment: 'pihole-dhcp'
|
||||||
|
## playbook
|
||||||
|
pihole_homer_fqdn: docker.grote.lan # unter welchem host ist docker erreichbar? notwendig für die pihole stats in homer; fur die cors abfrage
|
||||||
|
|
|
@ -10,7 +10,13 @@
|
||||||
create: yes
|
create: yes
|
||||||
backrefs: false
|
backrefs: false
|
||||||
mode: 0664
|
mode: 0664
|
||||||
|
- name: Setze DNS-Resolver fuer pihole-*
|
||||||
|
ansible.builtin.blockinfile:
|
||||||
|
path: /etc/lighttpd/external.conf
|
||||||
|
block: |
|
||||||
|
setenv.add-environment = (
|
||||||
|
"VIRTUAL_HOST" => "{{ pihole_homer_fqdn }}
|
||||||
|
)
|
||||||
# Wenn die VM beim Start mit "systemd-networkd-wait-online." hängt
|
# Wenn die VM beim Start mit "systemd-networkd-wait-online." hängt
|
||||||
# Deaktiviere DHCP in:
|
# Deaktiviere DHCP in:
|
||||||
# sudo nano /etc/netplan/01-netcfg.yaml
|
# sudo nano /etc/netplan/01-netcfg.yaml
|
||||||
|
|
Loading…
Reference in a new issue