和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 后面的配置。