Skip to content

Instantly share code, notes, and snippets.

@pastukhov
Forked from boneskull/proxy
Created September 20, 2016 14:34
Show Gist options
  • Save pastukhov/ad5dcaf118aa3f16a4a7a8410d69a3cf to your computer and use it in GitHub Desktop.
Save pastukhov/ad5dcaf118aa3f16a4a7a8410d69a3cf 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