We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d29899 commit b73ca54Copy full SHA for b73ca54
_posts/2023-01-24-reverse-proxy-home-assistant.md
@@ -0,0 +1,26 @@
1
+---
2
+layout: post
3
+title: 'Configuring Home Assistant for Reverse Proxy'
4
+date: 2023-1-24 12:00:00 -0500
5
+category: 'Service Setup'
6
+tags: ['home assistant', 'traefik']
7
8
+
9
+This is a quick reminder for the code that needs to be added to the Home Assistant configuration YAML to get things working with a reverse proxy.
10
11
+<!--more-->
12
13
+In the terminal, edit the configuration YAML
14
15
+```bash
16
+nano /config/configuration.yaml
17
+```
18
19
+Now add the following formatted YAML to the configuration file.
20
21
+```yaml
22
+http:
23
+ use_x_forwarded_for: true
24
+ trusted_proxies:
25
+ - 192.168.1.10 #traefik
26
+```s
0 commit comments