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

spring cloud + nginx配置

时间:2018-06-08 23:19:38      阅读:1037      评论:0      收藏:0      [点我收藏+]

标签:set   nginx配置   pre   real   rem   AC   cache   for   root   

 

 

 

server { 
    listen 80 default_server;
    location /{
        root /path/html
        add_header Cache-Control max-age=864000
    }
      location ^~ /service {
            proxy_pass http://ateway:20000/;

            proxy_redirect  off;
            proxy_cookie_path   / /service;

            proxy_set_header    Host $host;
            proxy_set_header    X-Real-IP $remote_addr;
            proxy_set_header    X-Forwarded-Host $remote_addr;
            proxy_set_header    X-Forwarded-Server $remote_addr;
            proxy_set_header    X-Forwarded-For  $proxy_add_x_forwarded_for;

            # 超时控制
            proxy_connect_timeout 1200s;
            proxy_send_timeout 1200s;
            proxy_read_timeout 1200s;
        }
       
 }

 

spring cloud + nginx配置

标签:set   nginx配置   pre   real   rem   AC   cache   for   root   

原文地址:https://www.cnblogs.com/code111/p/9157827.html

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