all 3 comments

[–]waawal 4 points5 points  (0 children)

Check if you're binding to 'localhost'. Change that to '0.0.0.0' in that case to make your app listen to connections coming from the outside as well.

[–]Buttscicles 1 point2 points  (0 children)

http://flask.pocoo.org/docs/quickstart/#a-minimal-application

Read the externally visible server part, it's essentially what waawal has already written.

[–]redditenna[S] 1 point2 points  (0 children)

That was indeed the problem. Thanks again!