nginx + gunicorn + flask - EC2 上的 502 和 404 错误

nginx + gunicorn + flask - 502 and 404 error on EC2

我在 Amazon EC2 上有一个由 nginx + gunicorn + flask 组成的设置。 Flask 程序应该提供 REST API。但是当我尝试访问 URL 时,出现 502 和 404 错误。根据 Whosebug 和其他地方的许多相关问题尝试了几件事,但没有成功。希望有人能帮忙。

这是我的设置:

nginx:

文件名为:/etc/nginx/sites-enabled/abcbackend

server {
    listen 80;
    server_name abc.xxx.yyy.com;

    location /app1/ {
        include proxy_params;
        proxy_pass http://localhost:3000;
        proxy_ssl_name abc.xxx.yyy.com;
        proxy_ssl_server_name on;
    }
}

独角兽

文件在 /etc/systemd/system/abc.service

[Unit]
Description=Gunicorn instance to serve ABC backend service REST API
After=network.target

[Service]
User=tomtom
Group=www-data
WorkingDirectory=/home/tomtom/ABC/Flask
Environment="PATH=/home/tomtom/ABC/env/bin"
ExecStart=/home/tomtom/ABC/env/bin/gunicorn --workers 3 --bind 0.0.0.0:3000 --access-logfile /var/log/abc/gunicorn-access.log --error-logfile /var/log/abc/gunicorn-error.log wsgi:app

[Install]
WantedBy=multi-user.target

烧瓶

Flask 应用程序在 /home/tomtom/ABC/Flask 目录中,有两个文件:

wsgi.py

from appServer import app

if __name__ == "__main__":
    app.run()

appServer.py

from flask import Flask, jsonify
app = Flask(__name__)

@app.route('/getDummyData', methods=['GET','POST'])
def get_dummy_data():
    return 'Dummy data from Hello World!'

@app.route('/', methods=['GET','POST'])
def hello_world():
    return 'Hello World! This is from the Python Flask server'

if __name__ == '__main__':
    app.run(host='0.0.0.0')

在上述文件中尝试了 0.0.0.0、127.0.0.1 和 localhost 的各种组合,但其中 none 有效。

我尝试转到这个 URL“http://abc.xxx.yyy.com/app1”,它给了我一个“Requested URL was not found on the服务器”,如果我尝试“http://abc.xxx.yyy.com/getDummyData”,我会收到 404 Not Found 错误。

如果我直接登录到 EC2 并 运行 curl 命令,它会成功运行: curl -X GET http://0.0.0.0:3000/ and curl -X GET http://0.0.0.0:3000/getDummyData 都有效。

只需在我的浏览器中转到 http://abc.xxx.yyy.com 也可以,并给我一条“欢迎使用 nginx”消息。

可能出了什么问题?

编辑::

已添加 nginx.conf:

user tomtom;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
        worker_connections 768;
        # multi_accept on;
}

http {

        ##
        # Basic Settings
        ##

        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 65;
        types_hash_max_size 2048;
        # server_tokens off;

        # server_names_hash_bucket_size 64;
        # server_name_in_redirect off;

        include /etc/nginx/mime.types;
        default_type application/octet-stream;

        ##
        # SSL Settings
        ##

        ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
        ssl_prefer_server_ciphers on;

        ##
        # Logging Settings
        ##

        access_log /var/log/nginx/access.log;

        ##
        # Gzip Settings
        ##

        gzip on;

        # gzip_vary on;
        # gzip_proxied any;
        # gzip_comp_level 6;
        # gzip_buffers 16 8k;
        # gzip_http_version 1.1;
        # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

        ##
        # Virtual Host Configs
        ##

        include /etc/nginx/conf.d/*.conf;
        include /etc/nginx/sites-enabled/*;
}
                          

所以问题是这个 nginx 行:

proxy_pass http://localhost:3000;

应该是:

proxy_pass http://localhost:3000/;

就是这样。只是那个单一的“/”。让一切变得不同。 :-) 现在关闭这个问题。 谢谢大家。