【发布时间】:2020-07-22 14:36:00
【问题描述】:
在发现 nginx 时(使用本导师 https://www.digitalocean.com/community/tutorials/nginx-ubuntu-18-04-ru)在“第 5 步 - 设置服务器块(推荐)”中遇到了问题。这是我的服务器块文件。
server {
listen 81;
listen [::]:81;
root /var/www/tutorial;
index index.html;
server_name example.ubuntu.com;
location / {
try_files $uri $uri/ =404;
}
}
但 nginx 只响应 localhost:81 查询,而不是 example.ubuntu.com
【问题讨论】:
-
因为你告诉它监听 81 端口。