Skip to content

Instantly share code, notes, and snippets.

View giovannyreyeso's full-sized avatar
🎯
Focusing

Giovanny Reyes O giovannyreyeso

🎯
Focusing
  • Culiacan, Mexico
  • 06:34 (UTC -07:00)
View GitHub Profile
@giovannyreyeso
giovannyreyeso / nginx-websocket-proxy.conf
Created August 16, 2022 01:09 — forked from uorat/nginx-websocket-proxy.conf
Nginx Reverse Proxy for WebSocket
upstream websocket {
server localhost:3000;
}
server {
listen 80;
server_name localhost;
access_log /var/log/nginx/websocket.access.log main;