mirror of
https://github.com/esphome/esphome.git
synced 2024-10-31 08:25:53 +01:00
797aadaf26
* Update CI matcher * Check Executable bit
18 lines
547 B
Plaintext
18 lines
547 B
Plaintext
server {
|
|
listen %%port%% default_server ssl http2;
|
|
|
|
include /etc/nginx/includes/server_params.conf;
|
|
include /etc/nginx/includes/proxy_params.conf;
|
|
include /etc/nginx/includes/ssl_params.conf;
|
|
# Clear Hass.io Ingress header
|
|
proxy_set_header X-Hassio-Ingress "";
|
|
|
|
# Redirect http requests to https on the same port.
|
|
# https://rageagainstshell.com/2016/11/redirect-http-to-https-on-the-same-port-in-nginx/
|
|
error_page 497 https://$http_host$request_uri;
|
|
|
|
location / {
|
|
proxy_pass http://esphome;
|
|
}
|
|
}
|