Skip to content

Instantly share code, notes, and snippets.

View LibertyBeta's full-sized avatar
👺
I'mma Tengu!

Rainer Paskiewicz LibertyBeta

👺
I'mma Tengu!
View GitHub Profile
@boneskull
boneskull / proxy
Created January 26, 2016 00:43
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;