I've connected my PC with other server using AnyVPN and PuTTy. Then I've made simple flask python app (code below):
from flask import Flask
app = Flask(__name__)
@app.route('/')
def homepage():
return "Hi there, how ya doin?"
if __name__ == "__main__":
app.run(')
When I've tried running that - it was working. Terminal displayed '* Running on http://127.0.0.1:5000/' but when i opened the browser and typed that link - my browser didn't display anything. What's more, i haven't root permissions on this server and i've seen that Forwarding function is disabled.
Do you have any idea how can I resolve that?