发现nginx 与 gunicorn 和 flask 分别都能正常运行,但配合起来没有正常工作。
主要是nginx的监听外网80端口正常,却无法反向代理给5000端口的gunicorn
gunicorn wsgi --bind 0.0.0.0:5000
我通过查看端口发现gunicorn + flask成功运行在了5000端口
也在浏览器中通过5000端口可以成功访问服务器中的网站
/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
互换的青春
相关分类