diff --git a/bitlair.yaml b/bitlair.yaml index 9a7b765..48db717 100644 --- a/bitlair.yaml +++ b/bitlair.yaml @@ -10,6 +10,11 @@ roles: - { role: "bank", tags: ["bank"] } +- hosts: homeassistant + roles: + - { role: "acme", tags: ["acme"] } + - { role: "nginx", tags: ["nginx"] } + - hosts: raspi roles: - { role: "raspi", tags: ["raspi"] } diff --git a/group_vars/homeassistant.yaml b/group_vars/homeassistant.yaml index 9f5146b..d43165b 100644 --- a/group_vars/homeassistant.yaml +++ b/group_vars/homeassistant.yaml @@ -10,3 +10,6 @@ group_nft_input: nginx_sites: - server_name: "homeassistant.bitlair.nl" + localproxy: "8123" + snippets: + - "homeassistant-nginx.j2" diff --git a/snippets/homeassistant-nginx.j2 b/snippets/homeassistant-nginx.j2 new file mode 100644 index 0000000..d46617e --- /dev/null +++ b/snippets/homeassistant-nginx.j2 @@ -0,0 +1,14 @@ + location /api/ { + proxy_pass http://127.0.0.1:8123; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + proxy_set_header Host $host; + } + + location / { + proxy_pass http://127.0.0.1:8123; + proxy_http_version 1.1; + proxy_set_header Host $host; + } +