这篇短文包括了二个内容: nginx错误页面跳转、nginx设置文件缓存时间。
1、设置Nginx错误页面跳转
1)、在http定义区域加入:
fastcgi_intercept_errors on;
2)、在server 区域加入:
复制代码 代码如下:
error_page 500 404 403 /404.html;
或 error_page 500 502 503 504 404 403 http://www.jb200.com;
2、Nginx 设置文件缓存时间
在server中添加以下配置,设置文件缓存时间为30天!
复制代码 代码如下:
location ~.*.(swf|jpg|gif|png|jpep|mp3|zip|map)$ {
expires 30d;
access_log /data/nginx_logs/lihuipeng.blog.51cto.com.log;
}