Nginx摘除流量

#负载均衡配置
upstream  order-backend {
    server 127.0.0.1:8080 max_fails=1 fail_timeout=3s weight=3;
    server 127.0.0.1:8081 max_fails=1 fail_timeout=3s weight=3;
}
        location /api {
                #add_header指令来设置response header,通过浏览器F12查看到每个请求的response header都有下面四个属性
                #该字段是必须的。它的值要么是请求时Origin字段的值,要么是一个*,表示接受任意域名的请求。
                add_header Access-Control-Allow-Origin "*";	

                #表示是否允许发送Cookie。默认情况下,Cookie不包括在CORS请求之中。设为true,即表示服务器明确许可,Cookie可以包含在请求中,一起发给服务器。这个值也只能设为true,如果服务器不要浏览器发送Cookie,删除该字段即可。
                add_header Access-Control-Allow-Credentials "true";	

                #该字段可选。CORS请求时,XMLHttpRequest对象的getResponseHeader()方法只能拿到6个基本字段:Cache-Control、Content-Language、Content-Type、Expires、Last-Modified、Pragma。如果想拿到其他字段,就必须在Access-Control-Expose-Headers里面指定。
                add_header Access-Control-Allow-Hea

你可能感兴趣的:(Java,nginx)