免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2720 | 回复: 2

[服务应用] 真心求助。。nginx错误 [复制链接]

论坛徽章:
0
发表于 2013-12-27 15:25 |显示全部楼层
本帖最后由 lxlxlx16 于 2013-12-27 16:58 编辑


#user  nobody;
worker_processes  8;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    use epoll;
    worker_connections  1024;
}


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


  ##cache##
  proxy_connect_timeout 50;
  proxy_read_timeout 60;
  proxy_send_timeout 30;
  proxy_buffer_size 16k;
  proxy_buffers 4 64k;
  proxy_busy_buffers_size 128k;
  proxy_temp_file_write_size 128k;
  proxy_temp_path /data/temp_dir;
  proxy_cache_path /data/cache levels=1:2 keys_zone=cache_one:200m inactive=1d max_size=30g;
  ##end##


    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';
     access_log    /data/nginx/logs/access.log;
    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name  unitrust.com.cn;

        #charset koi8-r;

        #access_log  logs/host.access.log;

               location ~* \.(gif|jpg|png)$ {
         valid_referers none blocked unitrust.com.cn *.unitrust.com.cn *.baidu.com;
          if ($invalid_referer) {
        rewrite ^/ http://www.unitrust.com.cn/;
         }

         location ~* \.(gif|jpg|png|htm|html|css|js|flv|ico|swf)$ {
              proxy_pass http://172.18.130.52;
              proxy_redirect off;
              proxy_set_header Host $host;
              proxy_cache cache_one;
              proxy_cache_valid 200 302 1h;
              proxy_cache_valid 301 1d;
              proxy_cache_valid any 1m;
              expires 30d;
        }


     
    location /
    {
      limit_rate 500k;
      proxy_pass http://172.18.130.52;
      proxy_redirect          off;
      proxy_set_header        X-Real-IP       $remote_addr;
      proxy_set_header        Host      unitrust.com.cn;
      proxy_set_header        X-Forwarded-For $remote_addr;
    }

       
        



        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # 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  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443;
    #    server_name  localhost;

    #    ssl                  on;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_timeout  5m;

    #    ssl_protocols  SSLv2 SSLv3 TLSv1;
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers   on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

server {
        listen       80;
        server_name  demo5.unitrust.com.cn;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;


    location /
    {
      limit_rate 500k;
      proxy_pass http://172.18.130.20:8080;
      proxy_redirect          off;
      proxy_set_header        X-Real-IP       $remote_addr;
      proxy_set_header        Host      demo5.unitrust.com.cn:8080;
      proxy_set_header        X-Forwarded-For $remote_addr;
    }
    }
}


出现错误:nginx: [emerg] location "/" is outside location "\.(gif|jpg|png)$" in /data/nginx-1.2.9/conf/nginx.conf:78
请问应该如何修改?

论坛徽章:
0
发表于 2013-12-27 16:25 |显示全部楼层
/data/nginx/log 目录存在吗?

论坛徽章:
0
发表于 2013-12-27 16:59 |显示全部楼层
回复 2# shibaolan


    谢谢~这个问题我已经发现了,现在是别的错误。。能不能在帮我看看?到底还有哪里出了问题?麻烦你了~
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP