mirror of
https://github.com/esphome/esphome.git
synced 2024-10-31 08:25:53 +01:00
797aadaf26
* Update CI matcher * Check Executable bit
17 lines
398 B
Plaintext
17 lines
398 B
Plaintext
server {
|
|
listen %%interface%%:%%port%% default_server;
|
|
|
|
include /etc/nginx/includes/server_params.conf;
|
|
include /etc/nginx/includes/proxy_params.conf;
|
|
# Set Hass.io Ingress header
|
|
proxy_set_header X-Hassio-Ingress "YES";
|
|
|
|
location / {
|
|
# Only allow from Hass.io supervisor
|
|
allow 172.30.32.2;
|
|
deny all;
|
|
|
|
proxy_pass http://esphome;
|
|
}
|
|
}
|