码迷,mamicode.com
首页 > 编程语言 > 详细

java-Linux-nginx_动静分离

时间:2018-01-31 14:17:01      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:bsp   remote   动静分离   class   local   root   cal   png   rem   

技术分享图片

nginx.conf删除所有的注释项目变简单如下

worker_processes  1;

events {

    worker_connections  1024;

}

 

 

http {

    include       mime.types;

    default_type  application/octet-stream;

 

    sendfile        on;

    keepalive_timeout  65;

 

    server {

        listen       80;

        server_name  localhost;

 

        location / {

            root   html;

            index  index.html index.htm;

        }

 

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }

    }

 

}

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

技术分享图片

server节点中增加一个访问规则

技术分享图片

location ~ .*.action$ {

proxy_pass http://192.168.88.87:8080;

#以内4行复制粘贴就可以

proxy_redirect off;

proxy_set_header Host $host;#可以让后端拿到真实的客户端ip地址

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

 

}

技术分享图片

技术分享图片

 

java-Linux-nginx_动静分离

标签:bsp   remote   动静分离   class   local   root   cal   png   rem   

原文地址:https://www.cnblogs.com/sheying/p/8391011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!