本节内容:
nginx 正向代理,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;
}
}
关键点:
proxy_pass 后面的配置。
您可能感兴趣的文章:
nginx正向代理配置简单一例
nginx中配置proxy正向代理