美文网首页
nginx配置反向代理proxy_cache缓存

nginx配置反向代理proxy_cache缓存

作者: 码农私房菜 | 来源:发表于2022-09-17 16:08 被阅读0次
http {
...
upstream httpget {
server 192.168.44.104:8080;
}
proxy_cache_path /ngx_tmp levels= 1:2 keys_zone=test_cache:100m inactive=1d max_size=10g; # 临时文件存一天
server {
    listen80;
    server_name localhost;
    location / {
        proxy_pass http://httpget;
        add_header Nginx-Cache "$upstream_cache_status";
        proxy_cache test cache;
        proxy_cache_valid 1h; # 请求资源过期时间
        root html;
  }
}

相关文章

  • Nginx反向代理配置与proxy_cache设置

    使用Nginx反向代理与proxy_cache缓存搭建CDN服务器的配置方法linux下通过Nginx反向代理和p...

  • Nginx静态缓存配置

    Nginx 静态缓存配置方法 我们需要用到nginx两个缓存模块Expires和proxy_cache。Nginx...

  • Nginx应用场景

    反向代理,负载均衡,动静分离 1.反向代理 修改nginx配置,并重新加载 重新加载nginx配置./nginx ...

  • 01-nginx前端方向代理

    前端反向代理 1.下载nginx 2. 配置nginx.conf反向代理

  • nginx

    nginx的配置、虚拟主机、负载均衡和反向代理一nginx的配置、虚拟主机、负载均衡和反向代理二nginx的配置、...

  • nginx反向代理

    什么是反向代理 如何实现反向代理 准备工作以及安装nginx 配置nginx nginx的初始配置文件去掉注释后的...

  • nginx 配置

    nginx 多个 root页面配置 反向代理

  • 第二课 nginx+tomcat集群

    正向代理,反向代理 配置Nginx 配置文件目录:/usr/local/nginx-1.6.1/conf/ngin...

  • nginx+tomcat集群

    正向代理,反向代理 配置Nginx 配置文件目录:/usr/local/nginx-1.6.1/conf/ngin...

  • nginx+tomcat集群

    正向代理,反向代理 配置Nginx 配置文件目录:/usr/local/nginx-1.6.1/conf/ngin...

网友评论

      本文标题:nginx配置反向代理proxy_cache缓存

      本文链接:https://www.haomeiwen.com/subject/ttgyortx.html