【nginx】nginx + gunicorn 没有成功 反向代理

我用 nginx + gunicorn 布署flask应用。

发现nginx 与 gunicorn 和 flask 分别都能正常运行,但配合起来没有正常工作。
主要是nginx的监听外网80端口正常,却无法反向代理给5000端口的gunicorn

gunicorn的命令如下

gunicorn wsgi --bind 0.0.0.0:5000
我通过查看端口发现gunicorn + flask成功运行在了5000端口
也在浏览器中通过5000端口可以成功访问服务器中的网站

nginx 的设置如下

/etc/nginx/sites-enabled/web
web文件中的内容如下

server {

listen 80;

location / {

proxy_pass http://localhost:5000;

}

}

我用通过service nginx restart多次成功重启了nginx。
nginx -t查看配置是否成功,结果如下:

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

我用浏览器通过ip不加端口(默认80端口)访问,网页内容是welcome to nginx
【nginx】nginx + gunicorn  没有成功 反向代理

现在我不知道问题该如何解决了

回答

nginx配置文件的路径一般不是: /etc/nginx/nginx.conf

可以看下这个命令中conf的配置文件的路径是什么(vim之类的打开) /etc/init.d/nginx
确定配置文件修改的没问题后,运行 /etc/init.d/nginx reload 试试

以上是 【nginx】nginx + gunicorn 没有成功 反向代理 的全部内容, 来源链接: utcz.com/a/84336.html

回到顶部