我最近有机会使用Flask。我尝试使用Nginx使用不同的IP地址运行Flask。 这是我对Nginx的配置。
NGINX配置
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://localhost:5000;
proxy_set_header Host "localhost";
}
}
问题:
在函数add
中,URL随localhost一起提供。例如)http://localhost/192.23.60.54(应该只是http://192.23.60.54)
烧瓶
@app.route('/')
def main():
return render_template('index.html')
@app.route('/add', methods=['POST','GET'])
def add():
return redirect("192.23.60.54")