Replies: 1 comment 1 reply
-
Hi! Did you check the documentation here? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
i want to use express server which contain socket.io in nginx and use this in react app which run on 3000 but not able to connect
can any one help me to find how to connect app proxy server solet.io with react app through nginx
worker_processes auto;
events {
worker_connections 1024;
}
http {
sendfile on;
gzip on;
include mime.types;
upstream socketio {
server 192.168.6.1:3000;
# Add additional servers for load balancing
}
server {
listen 80;
server_name localhost;
}
}
i want to use express server which contain socket.io in nginx and use this in react app which run on 3000 but not able to connect
can any one help me to find how to connect app proxy server solet.io with react app through nginx
Beta Was this translation helpful? Give feedback.
All reactions