免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 6483 | 回复: 3
打印 上一主题 下一主题

[Web] nginx.conf中加入proxy_pass后图片不能显示? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-12-15 16:04 |只看该作者 |倒序浏览
user  www www;
worker_processes  2;

error_log  /usr/local/www/logs/nginx_error.log crit;
pid        /usr/local/www/logs/nginx.pid;
worker_rlimit_nofile 51200;

events {
    use kqueue;
    worker_connections  51200;
}

http {
    include       mime.types;
    default_type  application/octet-stream;

    server_names_hash_bucket_size 128;
    client_header_buffer_size 32k;
    client_max_body_size 2m;
    large_client_header_buffers 4 32k;

    sendfile on;
    tcp_nopush     on;
    keepalive_timeout 3;
    tcp_nodelay on;

    fastcgi_connect_timeout 300;
    fastcgi_send_timeout 300;
    fastcgi_read_timeout 300;
    fastcgi_buffer_size 64k;
    fastcgi_buffers 4 64k;
    fastcgi_busy_buffers_size 128k;
    fastcgi_temp_file_write_size 128k;

    upstream varnishd {
       server 127.0.0.1:8080;
    }
    server {
        listen       80;
        server_name  xxx.com;
        location / {
            index index.html index.htm index.php;
            root /usr/local/www/xxx.com;
        }
       location ~ \.(png|jpg|gif|bmp|swf)$ {
               proxy_pass http://varnishd;
               proxy_redirect off;
               proxy_set_header Host $host;
               proxy_set_hander X-Real-IP $remote_addr;
               proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
               client_max_body_size 50m;
               client_body_buffer_size 256k;
               proxy_connect_timeout 30;
               proxy_send_timeout 30;
               proxy_read_timeout 60;
               proxy_buffer_size 16k;
               proxy_buffers 4 32k;
               proxy_busy_buffers_size 64k;
               proxy_temp_file_write_size 64k;
       }
        location ~ \.php$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /usr/local/www/xxx.com$fastcgi_script_name;
            include        fastcgi_params;
        }
        location ~ ^/NginxStatus/ {
            stub_status on;
            access_log off;
        }
        location ~ /\.ht {
            deny  all;
        }
    }
}



上面就是添加了varnishd, 运行在127.0.0.1:8080

还有一个问题就是设置下面时,图片也不会显示,其他什么都能正常显示就是图片不显示
location ~ \.(png|gif|jpg)$ {
    access_log off;
}

论坛徽章:
0
2 [报告]
发表于 2008-12-16 09:34 |只看该作者


[ 本帖最后由 ttplay 于 2008-12-16 09:37 编辑 ]

论坛徽章:
0
3 [报告]
发表于 2008-12-16 12:35 |只看该作者
varnish工作正常么,用IP:8080/图片能访问到么

论坛徽章:
0
4 [报告]
发表于 2008-12-16 18:10 |只看该作者
谢谢各位关注!

varnish中的图片显示已经解决了, 在location ~ \.(jpg|png|gif|swf)$ { 中加入了下面的代码:

proxy_store on;
proxy_store_access user:rw group:rw all:rw;
proxy_temp_path /usr/local/www/temp_dir;


这里temp_dir改为自己的DIR地址,权限:

chown -R www:www /usr/local/www/temp_dir


现在还有下面的图片不能显示?

location ~ \.(png|gif|jpg)$ {
    access_log off;
}


[ 本帖最后由 scc_166 于 2008-12-16 18:13 编辑 ]
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP