ngingx 重定向我而不是指向站点

ngingx redirects me instead of pointing to site

提问人:Dendrowen 提问时间:8/27/2023 最后编辑:AlbinaDendrowen 更新时间:8/28/2023 访问量:11

问:

我正在尝试让 nginx 显示在端口 8001 上运行的网页,而无需将 url 更改为 .作为我的服务器 IP。xx.xx.xx.xx:8001xx.xx.xx.xx

根据多个消息来源,应该能够处理这个问题,但事实并非如此。相反,它重定向了我。我做错了什么?proxy_set_header

server {
    listen 80;
    listen [::]:80;
    server_name aa.domain.com;
    location / {
        proxy_pass http://localhost:8001;
        proxy_set_header Host $host;
    }
}

server {
    listen 8001;
    listen [::]:8001;

    server_name domain.com;

    location = /favicon.ico { access_log off; log_not_found off; }

    location /static {
        alias /var/www/domain/static;
        autoindex off;
    }

    location /robots.txt {
        alias /var/www/domain/static/robots.txt;
    }

    location / {
        proxy_pass http://localhost:8000;
    }
}
nginx 子域 代理pass

评论


答: 暂无答案