zoukankan      html  css  js  c++  java
  • bbc虚拟主机配置(linux下的Nginx服务器)

    server
        {
            listen 80;
            #listen [::]:80;
            server_name www.bbc.org bb2.org;
            index index.html index.htm index.php default.html default.htm default.php;
            root  /home/wwwroot/bbc;
    
            location / {
             index  index.php;
             if (!-e $request_filename) { 
                 rewrite  ^/(.*)$  /index.php/$1  last;
                 break;
             }    
            }
            location ~ .+.php($|/) {
                include fastcgi.conf;
                set $script    $uri;
                set $path_info  "";
                if ($uri ~ "^(.+.php)(/.+)") {
                    set $script     $1;
                    set $path_info  $2;
                }
    
                fastcgi_pass  unix:/tmp/php-cgi.sock;
                fastcgi_index  index.php?IF_REWRITE=1;
                include fastcgi_params;
                fastcgi_param PATH_INFO $path_info;
                fastcgi_param SCRIPT_FILENAME  $document_root/$script;
                fastcgi_param SCRIPT_NAME $script;
            }
            #error_page   404   /404.html;
    
            # Deny access to PHP files in specific directory
            #location ~ /(wp-content|uploads|wp-includes|images)/.*.php$ { deny all; }
    
            location ~ [^/].php(/|$)
            {
                fastcgi_pass  unix:/tmp/php-cgi.sock;
                fastcgi_index index.php;
                include fastcgi.conf;
                include pathinfo.conf;
            }
    
            location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$
            {
                expires      30d;
            }
    
            location ~ .*.(js|css)?$
            {
                expires      12h;
            }
    
            location ~ /.well-known {
                allow all;
            }
    
            location ~ /.
            {
                deny all;
            }
    
            access_log  /home/wwwlogs/bbc.log;
        }

    主要是前面两个 location!!!

  • 相关阅读:
    GCD HDU
    Finding Lines UVALive
    Chinese Mahjong UVA
    DNA Evolution CodeForces
    String Reconstruction (并查集)
    Number Cutting Game HDU
    Paint the Wall ZOJ
    Star sky CodeForces
    Haunted Graveyard ZOJ
    GuGuFishtion HDU
  • 原文地址:https://www.cnblogs.com/mengwangchuan/p/9004185.html
Copyright © 2011-2022 走看看