I have a python app that serves the regular HTTP requests and Websocket on the same port (i.e. 8080). While this works perfectly fine on local dev, when deploying I get error saying the port is already in use.
So I have a workaround where I am using a different port (which also maps to a different domain like p8081.mydomain.com), but curious if supporting both on the same port is possible?