Skip to content

Instantly share code, notes, and snippets.

@tyriis
Forked from boneskull/proxy
Created November 23, 2017 22:03
Show Gist options
  • Save tyriis/42ab63559a35dd30e902d0abd60c74d5 to your computer and use it in GitHub Desktop.
Save tyriis/42ab63559a35dd30e902d0abd60c74d5 to your computer and use it in GitHub Desktop.
example nginx config to reverse proxy a node-red server (websocket support)
server {
listen 80;
server_name your_server_name;
access_log /var/log/nginx/access.log;
location / {
proxy_pass http://localhost:1880;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment