nginx 配合 spring boot - docker 做动静分离和跨域

spring boot 、 spring cloud 、 docker 我就呵呵了,反正很火
spring boot 主要做微服务,一般仅仅提供服务,逼格说的简单点,提供一个http请求,返回json。
docker ,呵呵 方便部署,持续交互, 云计算-也即是 虚拟化技术和资源管理,,逼格再低点—运维,
html 页面 不像以前那样 放在web工程目录下,
现在要做的是


nginx 配合 spring boot - docker 做动静分离和跨域_第1张图片
这里写图片描述

图有点丑,没关系

nginx配置

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;

    server {
        listen       80;
        server_name  127.0.0.1;

        location / {
          expires    8h;
          root html; 
        }

    }

    server {
        listen       80;
        server_name  localhost;

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|html)$  
         {  
               expires    8h;
               root html;  
         } 

        location / {
          add_header Access-Control-Allow-Origin "*";
          add_header Access-Control-Allow-Methods "GET, OPTIONS, POST, GET";
          add_header Access-Control-Allow-Headers        $http_access_control_request_headers;
          add_header Access-Control-Allow-Credentials "true";
         add_header Content-Length 0;
          proxy_pass http://10.10.8.63:9002;
        }




        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

    }


}

试的时候 nginx 在 win中 重用命

start nginxnginx -s reloadnginx -s stop

spring boot 就仅仅是提供服务了

点击获取优惠券

点我获取阿里云优惠券

我的官网


nginx 配合 spring boot - docker 做动静分离和跨域_第2张图片
我的博客

我的官网http://guan2ye.com
我的CSDN地址http://blog.csdn.net/chenjianandiyi
我的地址http://www.jianshu.com/u/9b5d1921ce34
我的githubhttps://github.com/javanan
我的码云地址https://gitee.com/jamen/
阿里云优惠券https://promotion.aliyun.com/ntms/act/ambassador/sharetouser.html?userCode=vf2b5zld&utm_source=vf2b5zld

阿里云教程系列网站http://aliyun.guan2ye.com

nginx 配合 spring boot - docker 做动静分离和跨域_第3张图片
1.png

我的开源项目spring boot 搭建的一个企业级快速开发脚手架

nginx 配合 spring boot - docker 做动静分离和跨域_第4张图片
1.jpg

你可能感兴趣的:(nginx 配合 spring boot - docker 做动静分离和跨域)