美文网首页
nginx 子域名代理

nginx 子域名代理

作者: penggy | 来源:发表于2016-10-13 17:10 被阅读0次
    server {
        ...
        set $subdomain /www;
        if ( $host ~* (\b(?!www\b)\w+)\.\w+\.\w+ ) {
            set $subdomain /$1;
        }
    
        location / {
        proxy_set_header X-Real-IP $remote_addr;
        if ( $subdomain = "/sd" ) {
            proxy_pass http://www.bitmap.cc:8090;
            break;
        }
            root   /mnt/html$subdomain;
            index  index.html index.htm;
        }
        ...
    }
    

    相关文章

      网友评论

          本文标题:nginx 子域名代理

          本文链接:https://www.haomeiwen.com/subject/ubdiyttx.html