Nginx重定向魔术

时间:2015-09-30 15:50:44

标签: amazon-web-services nginx amazon-route53

我有一个第三方在子域名上将流量转发给我 - 让我们称之为 subdomain.thirdparty.com

我想将此流量转发到 www.mysite.com/subdomain - 这就是应用程序所在的位置。应用中的链接需要URL中的/ subdomain部分。

但我想在浏览器中维护第三方网址,例如 subdomain.thirdparty.com subdomain.thirdparty.com/subdomain

我在AWS上托管,所以我可以使用Route 53,并且具有以下Nginx设置:

server{
    server_name *.mysite.com;
    listen 80;

    location /subdomain/{
        proxy_set_header SCRIPT_NAME /subdomain;
        proxy_set_header Host $host;
        proxy_pass http://127.0.0.1:9014;
    }
}

我对Nginx的设置进行了修改,但似乎无法弄明白。任何指导都将不胜感激。

0 个答案:

没有答案