首页 > 后端开发 > php教程 > nginx作为图片浏览前端cache配置示例

nginx作为图片浏览前端cache配置示例

WBOY
发布: 2016-08-08 09:28:08
原创
1097 人浏览过
#图片浏览cache
proxy_cache_path /var/cache/nginx/imgCache levels=2:2:2 keys_zone=imgCache:256m inactive=7d max_size=0m;
server
{
    listen 80;
    server_name img.xxxx.net;
    root /data/www/;

    location ~ \.(jpg|jpeg|jp2|png|gif|bmp|ico|wbmp|xbm|tiff)(/\d*)?(/\d*)?(\?.*)?$ {
        proxy_pass  http://127.0.0.1:8118;
        proxy_cache imgCache;
        proxy_cache_key $host$uri;
        proxy_set_header host inner.img.xxxx.com;
        proxy_cache_valid  200 30d;
        proxy_cache_valid any 1m;
        expires 30d;
    }

    access_log  /var/log/nginx/img_cache.log main;
    error_log   /var/log/nginx/img_cache.log.err debug;
}
server
{
    listen 8118;
    server_name inner.img.xxxx.net;
    root /data/www/;

    location ~ \.(jpg|jpeg|jp2|png|gif|bmp|ico|wbmp|xbm|tiff)(/\d*)?(/\d*)?(\?.*)?$ {
        fastcgi_pass  unix:/var/run/php-cgi.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
        rewrite ^/(.*)$ /app/image/index.php?mod=download break;
        expires 7d;
    }

    access_log  /var/log/nginx/img_download.log main;
    error_log   /var/log/nginx/img_download.log.err debug;
}
登录后复制

以上就介绍了nginx作为图片浏览前端cache配置示例,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板