问大家一个nginx 反向代理问题

一台nginx反向代理,有2个location 代理不同的地址,有一台是静态页面代理,做完之后一台的访问不了

问题出现的平台版本及自己尝试过哪些方法

相关代码

// 请把代码文本粘贴到下方(请勿用图片代替代码)

server {    listen       8800;    server_name  localhost;    location /rms{        root   html;        index  index.html index.htm;        add_header 'Access-Control-Allow-Origin' '*';        add_header Access-Control-Allow-Methods GET,POST,OPTIONS,DELETE;        add_header 'Access-Control-Allow-Headers' 'userId,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';        proxy_pass http://9.1.8.249:8082/rms ;
    }     location /rizhiyi/ {        root   html;       alias /;        index  index.html index.htm;        proxy_pass http://9.1.8.76/;
    }    location ~* ^/(rizhiyi|images|img|javascript|js|css|blog|flash|media|static|api|auth|account|ico)/ {        proxy_pass http://9.1.8.76:80;
   }


喵喔喔
浏览 431回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5