Nginx 反向代理作为文件夹

Nginx 反向代理作为文件夹

我正在尝试配置 Nginx 来代理子域名:dev.int.com

我希望 dev.int.com 代理到 IP:8080,dev.int.com/stash 代理到 IP:7990

这是我当前的配置文件

server {
listen   80;
server_name  dev.int.com;
access_log off;
location / {
    proxy_pass http://IP:8080;
    proxy_set_header    Host            $host;
    proxy_set_header    X-Real-IP       $remote_addr;
    proxy_set_header    X-Forwarded-for $remote_addr;
    port_in_redirect off;
    proxy_redirect   http://IP:8080/jira  /;
    proxy_connect_timeout 300;
    location ~ ^/stash {
        proxy_pass http://IP:7990;
        proxy_set_header    Host            $host;
        proxy_set_header    X-Real-IP       $remote_addr;
        proxy_set_header    X-Forwarded-for $remote_addr;
        port_in_redirect off;
        proxy_redirect   http://IP:7990/  /stash;
        proxy_connect_timeout 300;
    }
}

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
    root   /usr/local/nginx/html;
    }
}

但是,/stash 重定向将转到 /。我做错了什么?

答案1

在位置 / 的括号外定义位置 ~ ^/stash

相关内容