【发布时间】:2025-12-11 02:05:01
【问题描述】:
我对 Flask/Nginx/Gunicorn 还是很陌生,因为这只是我使用该组合的第二个站点。我根据 Miguel Grinberg 的 tutorial 创建了一个网站,因此我的文件结构与本教程中的完全相同。
在我之前的 Flask 应用程序中,我的应用程序位于一个名为 app.py 的文件中,所以当我使用 Gunicorn 时,我只调用了 gunicorn app:app
现在我的新应用程序被拆分为多个文件,我使用文件run.py 来启动应用程序,但我不确定现在应该如何调用 Gunicorn。我已经阅读了其他问题和教程,但它们没有奏效。当我运行 gunicorn run:app 并尝试访问该站点时,我收到 502 Bad Gateway 错误。
我认为我的问题更多是 Gunicorn,而不是 Nginx 或 Flask,因为如果我只输入 ./run.py,该网站就可以工作。无论如何,我在下面包含了我的 Nginx 配置和其他一些文件。非常感谢您的帮助!
文件:run.py
#!flask/bin/python
from app import app
from werkzeug.contrib.fixers import ProxyFix
app.wsgi_app = ProxyFix(app.wsgi_app)
app.run(debug = True, port=8001)
文件:app/views.py
from app import app
@app.route('/')
@app.route('/index')
def index():
posts = Post.query.order_by(Post.id.desc()).all()
return render_template('index.html', posts=posts)
文件:nginx.conf
server {
listen 80;
server_name example.com;
root /var/www/example.com/public_html/app;
access_log /var/www/example.com/logs/access.log;
error_log /var/www/example.com/logs/error.log;
client_max_body_size 2M;
location / {
try_files $uri @gunicorn_proxy;
}
location @gunicorn_proxy {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://127.0.0.1:8001;
}
}
【问题讨论】:
-
您确认您可以访问127.0.0.1:8001 了吗?然后 - 我会将“location @gunicorn_proxy”更改为“location /”(并注释掉之前的位置部分)
-
@soerium 我可以访问 127.0.0.1:8001,因为当我从命令行运行我的应用程序时,Flask 会打印
* Running on http://127.0.0.1:8001。
标签: python nginx flask gunicorn