应用server_name _之后,我的服务器上有nginx;在nginx文件中,我得到
502 Bad Gateway
nginx/1.14.0 (Ubuntu)
这是我的nginx文件:
server {
listen 8080;
server_name _;
location /{
include proxy_params;
proxy_pass http://unix:/home/prodapproot/appAPIs/apis.so$
}
}
但是当我这样使用DNS名称而不是“ _”时:
server_name DNS;
它正在工作,但是当我执行“ _”(下划线)时,它不工作。
GUNICORN服务文件:
[Unit]
Description=Gunicorn instance to serve apis
After=network.target
[Service]
User=prodapproot
Group=www-data
WorkingDirectory=/home/prodapproot/appAPIs
Environment="PATH=/home/prodapproot/appAPIs/appvenv/bin"
ExecStart=/home/prodapproot/appAPIs/appvenv/bin/gunicorn --bind 0.0.0.0:8080 wsgi:app
[Install]
WantedBy=multi-user.target