from flask import Flask,render_template,request app=Flask(__name__,static_folder='/static/') @app.route('/') def home(): return "OK" @app.route('/privacy-policy') def privacy(): return render_template('privacy-policy.html') @app.route('/terms-and-conditions') def terms(): return render_template('terms-and-conditions.html') if __name__=='__main__': app.run(debug=True,host='0.0.0.0',port='80')