我遇到了一个我不明白的nginx问题。
我能够正确设置和调用www.example.tech
and example.tech
。
但是,当向survey.example.tld
列表中添加另一个子域时,其他两个仍然有效但survey.example.tld
不起作用。
在 chrome 中,我在尝试调用时收到以下错误消息http://survey.example.tech/
:
无法访问此站点 检查 survey.example.tech 中是否有拼写错误。DNS_PROBE_FINISHED_NXDOMAIN
我很确定里面没有错字,因为我检查了三遍。而且,www.example.tech
还在example.tech
工作。
我使用 nginx 将请求转发到 gunicorn/flask 应用程序。
因此我将我的配置放入/etc/nginx/sites-enabled
$ cat /etc/nginx/sites-enabled/survey.example.tech
server {
server_name example.tech www.example.tech survey.example.tech;
location /static {
alias /opt/example.tech/my-domain-Survey-Website/static;
}
location / {
proxy_pass http://localhost:8003;
include /etc/nginx/proxy_params;
proxy_redirect off;
# Max file size allowed for upload by user. Here 1M = 1 Megabyte
client_max_body_size 1M;
# prevents warning messages when setting up let's encrypt
proxy_headers_hash_max_size 512;
proxy_headers_hash_bucket_size 128;
# Enable Websocket by adding these two options
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
}
以及相应的服务/etc/systemd/system
$ cat /etc/systemd/system/gunicorn-my-domain-survey-flask.service
[Unit]
Description = gunicorn for my-domain website
After = network.target
[Service]
Environment=LOG_PATH=/opt/example.tech/example.tech-Survey-Website/gunicorn-logs
User = ubuntu
Group = ubuntu
WorkingDirectory = /opt/example.tech/example.tech-Survey-Website
ExecStart = /opt/example.tech/venv/bin/gunicorn --bind 127.0.0.1:8003 -w 1 --log-level debug --access-logfile ${LOG_PATH}/access-logfile.log --error-logfile ${LOG_PATH}/error.log --capture-output run_survey_website:app
[Install]
WantedBy = multi-user.target
当我运行它时,除了survey.example.tech
.
这里发生了什么?我是否误解了使用 nginx 设置子域?
nginx 配置没问题。
您需要为
survey.example.tech
指向服务器 IP 地址的那个点添加 DNS 记录。