启用Nginx中缓存的HTTP

时间:2016-01-05 14:50:50

标签: nginx

我正在使用Nginx作为我网站的网络服务器。 我的目标是在我的网站上启用缓存,以便我的网站可以加载更快。 我试过添加

@Controller @RequestMapping("/app/products") public class ProductController implements Serializable {...}

Nginx配置文件

proxy_cache one;

如何在Nginx中正确启用HTTP缓存,并测试我的工作?

任何提示/建议将不胜感激!

1 个答案:

答案 0 :(得分:0)

您需要先使用proxy_cache_path定义此缓存区域。这是the tutorial