Chinaunix首页 | 论坛 | 博客
  • 博客访问: 7389280
  • 博文数量: 1755
  • 博客积分: 18684
  • 博客等级: 上将
  • 技术积分: 16227
  • 用 户 组: 普通用户
  • 注册时间: 2010-06-02 10:28
个人简介

啥也没写

文章分类

全部博文(1755)

文章存档

2024年(1)

2023年(44)

2022年(39)

2021年(46)

2020年(43)

2019年(27)

2018年(44)

2017年(50)

2016年(47)

2015年(15)

2014年(21)

2013年(43)

2012年(143)

2011年(228)

2010年(263)

2009年(384)

2008年(246)

2007年(30)

2006年(38)

2005年(2)

2004年(1)

分类: LINUX

2009-09-24 08:36:58

We use nginx as our web server on all our servers here at Em Space as it does a great job of serving web sites with very little overhead, essential on low memory virtual servers.

We have a stock virtual host file which serves Drupal sites very nicely (I'll post that sometime) but Josh needed to install a PHP based OAI2 harvester application which uses the server variable PATH_INFO for its query handling. Our default Drupal based rewrite and fastcgi rules didn't work, so we set about figuring out how to fix them for this site.

This is what we came up with:

server {
    listen 80;
    server_name doaih.urbits.com;
 
    access_log	/home/swin/oaih/dev/logs/access.log;
    error_log /home/swin/oaih/dev/logs/error.log;
 
    root   /home/swin/oaih/dev/public;
    index  index.php index.html index.htm;
 
    location / {
        if (!-e $request_filename) {
            rewrite ^/(.*)$ /index.php/$1 last;
        }
    }
 
    location ~ .php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
 
        include /etc/nginx/fastcgi_params;
    }
 
    location ~ \.php($|/) {
 
        set $script     $uri;
        set $path_info  "";
 
        if ($uri ~ "^(.+\.php)(/.+)") {
            set $script     $1;
            set $path_info  $2;
        }
 
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME    $document_root$script;
        fastcgi_param  SCRIPT_NAME        $script;
        fastcgi_param  PATH_INFO          $path_info;
 
        fastcgi_param  QUERY_STRING       $query_string;
        fastcgi_param  REQUEST_METHOD     $request_method;
        fastcgi_param  CONTENT_TYPE       $content_type;
        fastcgi_param  CONTENT_LENGTH     $content_length;
 
        fastcgi_param  REQUEST_URI        $request_uri;
        fastcgi_param  DOCUMENT_URI       $document_uri;
        fastcgi_param  DOCUMENT_ROOT      $document_root;
        fastcgi_param  SERVER_PROTOCOL    $server_protocol;
 
        fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
        fastcgi_param  SERVER_SOFTWARE    nginx;
 
        fastcgi_param  REMOTE_ADDR        $remote_addr;
        fastcgi_param  REMOTE_PORT        $remote_port;
        fastcgi_param  SERVER_ADDR        $server_addr;
        fastcgi_param  SERVER_PORT        $server_port;
        fastcgi_param  SERVER_NAME        $server_name;
        fastcgi_param  REDIRECT_STATUS    200;
 
    }
 
}

The first location directive sets up the base options while the second location directive matches a request to index.php on its own and passes it to fastcgi to handle. This was needed as requests for the domain without index.php were not being handled correctly by the next block.

The key section in the whole config file for dealing with our problem is this:

    location ~ \.php($|/) {
 
        set $script     $uri;
        set $path_info  "";
 
        if ($uri ~ "^(.+\.php)(/.+)") {
            set $script     $1;
            set $path_info  $2;
        }
 
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME    $document_root$script;
        fastcgi_param  SCRIPT_NAME        $script;
        fastcgi_param  PATH_INFO          $path_info;
    }

This location directive matches any PHP requests not previously matched and sets the $script variable to the full uri. It also empties the $path_info variable. The if statement matches any requests like the following: and puts index.php into the $script variable and /foo into the $path_info variable.

$script and $path_info are inserted into the server variables by the fastcgi parameters SCRIPT_NAME and PATH_INFO and allow PHP to properly process the requests.

阅读(1337) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~