我刚刚安装了 Nginx。它应该只提供静态文件,如 pdf 和图像。但是当我尝试在第一个响应中通过域名打开网站时,我得到了 301 重定向,它指向真实的 IP 地址。我的配置中没有任何重定向,但它确实这样做了。
server {
listen 80;
server_name .subdomain.example.com;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}