mirror of
https://github.com/esphome/esphome.git
synced 2024-10-31 08:25:53 +01:00
13 lines
287 B
Plaintext
13 lines
287 B
Plaintext
|
server {
|
||
|
listen %%port%% default_server;
|
||
|
|
||
|
include /etc/nginx/includes/server_params.conf;
|
||
|
include /etc/nginx/includes/proxy_params.conf;
|
||
|
# Clear Hass.io Ingress header
|
||
|
proxy_set_header X-Hassio-Ingress "";
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://esphome;
|
||
|
}
|
||
|
}
|