• 10万+阅读
  • 1回复

微信扫一扫分享精彩

分享到

 

负载均衡,反向代理
发于2015-09-13 我有话说评论
本部分内容设定了隐藏,需要回复后才能看到



帖子签名
— 本帖被 jxw 执行锁定操作(2015-09-13) —

  1. server {
  2.     listen       80;
  3.     listen       [::]:80;
  4.     server_name  镜像服务器主机名;
  5.     location / {
  6.         proxy_pass http://www.abc.org;
  7.         proxy_cache nuget-cache;
  8.         proxy_cache_valid 168h;
  9.         proxy_ignore_headers Set-Cookie Cache-Control;
  10.         proxy_hide_header Cache-Control;
  11.         proxy_hide_header Set-Cookie;
  12.     }
  13. }


只看该作者 1楼 发表于: 2015-09-13
关闭