如何在URL中删除本地主机

时间:2020-07-31 14:58:48

标签: nginx flask

我最近有机会使用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")

0 个答案:

没有答案