nginx正向代理并缓存文件示例

发布时间:2020-10-09编辑:脚本学堂
本文介绍了nginx做正向代理并缓存文件的方法,有需要的朋友参考下。

nginx反向代理并缓存静态文件的差别仅在于这是内部机器用来通过nginx上外网的方式。

配置文件:
 

复制代码 代码示例:

server { 

       listen 83; 
       location / { 
                resolver 8.8.8.8; 
                proxy_pass             http://$http_host$uri$is_args$args; 
                proxy_cache            static; 
                proxy_cache_valid      200  10d; 
                proxy_cache_use_stale  error timeout invalid_header updating http_500 http_502 http_503 http_504; 
       } 

以上就是nginx正向代理并缓存文件的简单配置,关键就是proxy_pass 后面的配置。