站点工具


侧边栏

抱歉,您没有权限增加页面
服务器技术:nginx:location特殊代理

resolver 8.8.8.8;
         location ~* /proxy/([^/]+)/(.*){
                
                set $newhost $1;
                set $params $2;
                
                proxy_set_header Host $newhost;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

                proxy_pass http:$newhost/$params;
          }

服务器技术/nginx/location特殊代理.txt · 最后更改: 2019/02/21 17:47 由 chenjinlian