Replies: 1 comment 3 replies
-
Socket.IO always runs on a subpath. The default location of the Socket.IO endpoint is on the If you want to change this path, you can, but it is not done by changing the connection URL. In the JavaScript and Python implementations of Socket.IO, the path of the Socket.IO endpoint is given in a |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
So I want to run a SocketIO application without the use of NGINX or something similar to it.
I'm just running the instance like this:
socketio.run(app, str(host), int(port), log_output=strtobool(str(log_output)))
, and I would like to run the instance on127.0.0.1:5000/subpath
instead of only theaddress:port
.Is it possible to do this, without NGINX?
Beta Was this translation helpful? Give feedback.
All reactions