Reputation: 365
I'm deploying an python web server on AWS now and I have a some question about it. I'm using websocket to communicate between back end and front end.
Thanks in advance.
Upvotes: 1
Views: 334
Reputation: 53535
AWS doesn't "know" anything about your content. The webserver that you install will be configured to point to the "root" directory in which index.html (or something equivalent) should be.
Since it depends on which webserver (django, flask, Jinja etc) you install - you should lookup its documentation!
Upvotes: 2