Tornado / websocket application hosting

I wrote an application that uses the Tornado implementation in websocket, and I'm trying to find a host for it. As far as I can tell by reading google search results, Google appengine does not support websites at the moment. I am not sure of the heroics, since I could not find any information. So my question is: if anyone knows a host, where can I host my application?

+6
source share
1 answer

The easiest way would be to use a common IaaS (infrastructure as a service) cloud service provider such as Amazon EC2 or Rackspace. Or just use a regular hosting server, for example, with Dreamhost. With them, you get direct access to the OS and network settings, and you can do whatever you want. The disadvantage is that it will be more expensive, and for EC2 and Rackspace you will need to manage the host itself.

Refresh . Now you can use Websockets on Heroku. Here is some information on using Websockets with Python on Heroku .

+5
source

Source: https://habr.com/ru/post/909613/


All Articles