Skip to content

Instantly share code, notes, and snippets.

View giovannyreyeso's full-sized avatar
🎯
Focusing

Giovanny Reyes O giovannyreyeso

🎯
Focusing
  • Culiacan, Mexico
  • 09:24 (UTC -07:00)
View GitHub Profile
@uorat
uorat / nginx-websocket-proxy.conf
Last active September 26, 2024 15:57
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;