nginx反向代理命令

  • upstream
  • proxy_pass
  • proxy_set_header
  • proxy_cache_path //定义在server外
    • 例:proxy_cache_path /nginx/cache/first levels=1:2:1 keys_zone=first:20m max_size=1G;
  • proxy_cache first(缓存区域名称)|off //开启关闭缓存功能 定义在 server内 或者location内
  • proxy_cache_valid 1h; 配置文件缓存文件1小时,具体配置可不是这么简单
  • add_header x-cache "$upstream_cache_status is what"; //可以查看缓存是否命中

    推荐阅读