Skip to content

Instantly share code, notes, and snippets.

@nnarain
Last active February 10, 2019 21:21
Show Gist options
  • Save nnarain/cdb0d07ff8f844178195643c0992846c to your computer and use it in GitHub Desktop.
Save nnarain/cdb0d07ff8f844178195643c0992846c to your computer and use it in GitHub Desktop.
Home assistant NGINX reverse proxy
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
#server_name myhome;
listen 80;
listen [::]:80;
proxy_buffering off;
location / {
proxy_pass http://localhost:8123;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment