bbc virtual host configuration (Nginx server under linux)

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;
    }

Mainly the first two locations! ! !

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325687400&siteId=291194637