我尝试在 nginx.conf 文件中将 nginx 的端口 80 更改为 81,但我的示例站点尽管监听了端口 81,却没有响应。示例网站仅在端口 80 上响应。此外,http://localhost:81 上的示例站点正在响应。但http://samplesite.com/当 Nginx 在 81 端口运行时没有响应。我是新手,所以我很难找到最好的方法来实现这一点。有人能告诉我如何在 80 以外的其他端口(例如 81)上运行 Nginx 服务器吗?
Nginx.conf 文件:
server {
listen 81;
listen [::]:81;
root /var/www/samplesite.com;
index index.html index.htm index.nginx-debian.html;
server_name samplesite.com www.samplesite.com;
location / {
try_files $uri $uri/ =404;
}
}
不是:ufw 处于非活动状态