- 论坛徽章:
- 0
|
本帖最后由 yayu_myself 于 2013-01-07 19:41 编辑
我知道原因了,是nginx图片缓存配置的问题
我的php客户端是采用如下方式上传的:
$file_id = $fdfs->storage_upload_by_filebuff("/usr/include/stdio.h", "jpg");
我发现,如果指定扩展名为jpg,就失效了,而指定为jp等就可以。
我在nginx的配置中有如下内容:- server {
- listen 80;
- server_name localhost;
- index index.html index.htm index.php;
- #access_log logs/host.access.log main;
-
- location / {
- root html;
- }
-
- # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
- #
- location ~ \.php$ {
- root html;
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name;
- include fastcgi_params;
- }
- location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
- expires 30d;
- }
-
- location ~ .*\.(js|css)$ {
- expires 1h;
- }
-
- location /M00/ {
- root /home/fastdfs/data;
- ngx_fastdfs_module;
- }
- }
复制代码 是上面图片缓存那行起了作用,导致后面的 location失效了,nginx趋向于更精确的匹配,修改为
location ^~/M00/ { # 匹配到这里后就禁止正则的匹配
root /home/fastdfs/data;
ngx_fastdfs_module;
}
但是这样的话,M00目录下的图片就没有缓存了,这可如何是好。
|
|