Nginx 配置服务以及反向代理

看完在复制

先看一段配置

(图解 一)

(图解 二)

这里图二内容太多,截取部分

  相对于第二种配置来说,我自认为配置一更加的美观简洁,更加的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;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

LIUUID

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值