当前位置 主页 > 服务器问题 > Linux/apache问题 >

    Nginx0.5.33+PHP5.2.5(FastCGI)搭建胜过Apache10倍的Web服务器(4)

    栏目:Linux/apache问题 时间:2018-11-07 14:17


          charset  gb2312;

          server_names_hash_bucket_size 128;

          #sendfile on;
          #tcp_nopush     on;
          keepalive_timeout 60;
          tcp_nodelay on;
          gzip on;
          gzip_min_length  1k;
          gzip_buffers     4 8k;
          gzip_http_version 1.1;
          gzip_types       text/plain application/x-javascript text/css text/html application/xml;
          server
          {
                  listen       80;
                  server_name  blog.s135.com;
                  index index.html index.htm index.php;
                  root  /data0/vshare/htdocs;
                  if (-d $request_filename)
                  {
                         rewrite ^/(.*)([^/])$
    http://$host/$1$2/
    permanent;
                  }

                  location ~ .*\.php?$
                  {
                       include conf/fcgi.conf;      
                       fastcgi_pass  127.0.0.1:10080;
                       fastcgi_index index.php;
                  }
                  log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
                                        '$status $body_bytes_sent "$http_referer" '
                                        '"$http_user_agent" $http_x_forwarded_for';
                  access_log  /data1/logs/access.log  access;
          }
          server
          {
                  listen  80;