看完在复制
先看一段配置
(图解 一)
(图解 二)
这里图二内容太多,截取部分
相对于第二种配置来说,我自认为配置一更加的美观简洁,更加的politeness,nginx也是提供了指令引入外部文件,我们可以像配置nacos那样配置公共的内容,最后整合为一份完整的nginx.conf
这里我的配置相对于来说是很简单的,一个内网情况下的小服务使用的
总配置 nginx.conf
这里总配置中引入了 location 模块的内容,这样去写也是及其的方便,减少在一个配置文件的冗余度,那句话咋说来着,低耦合
这里是配置lcoation 模块的内容 最后就是
配置跨域。这样一个nginx就配置好了。下面将配置跨域以及转发websocket代码贴出来,方便大家C+V
# 全局跨域配置 http
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS, PUT, DELETE';
add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain; charset=utf-8';
add_header 'Content-Length' 0;
return 204;
}
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
# 转发ws
location /websocket {
proxy_pass http://127.0.0.1:8082/plot/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header X-real-ip $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
}