首页 > 代码库 > nginx_跳转到指定配置

nginx_跳转到指定配置

 location /
        {
            try_files $uri @apache;
        }


  location @apache
        {
            internal;
            proxy_pass http://127.0.0.1:88;
            include proxy.conf;
        }

 

nginx_跳转到指定配置