简体   繁体   English

别名环境中的nginx path_info

[英]nginx path_info in alias environemnt

I need to get this working on nginx with php-fpm: 我需要使用php-fpm在nginx上进行此工作:

example.com/studip/dispatch.php/admin/user/

The Problem seems to be, that /studip isn't a subfolder under root but a alias to /usr/local/studip/public/ 问题似乎是,/ studip不是根目录下的子文件夹,而是/ usr / local / studip / public /的别名。

Here's the configuration without the (non working) path_info foo: 这是没有(无效)path_info foo的配置:

server {
    listen 80;
    server_name  example.com;

    root /var/www/example.com/htdocs;
    index index.php

    # Here are a few other subfolders hosted
    # ...
    # ...

    # and now studip:

    location /studip {
        alias /usr/local/studip/public/;
        index index.php;
        location ~ /studip/(.*\.php)$ {
            fastcgi_pass    unix:/var/www/sockets/studip.socket;
            fastcgi_index   index.php;
            fastcgi_param   SCRIPT_FILENAME    $document_root$1;
            include fastcgi_params;
        }
    }
}

And the fastcgi_params: 和fastcgi_params:

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   SCRIPT_FILENAME         $request_filename;
fastcgi_param   SCRIPT_NAME             $fastcgi_script_name;
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/$nginx_version;

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   HTTPS                   $https;

# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param   REDIRECT_STATUS         200;

fastcgi_buffers 8 16k;
fastcgi_buffer_size 32k;

I tried it for a sub-domain where root points to /usr/local/studip/public/ and get it working with this params: 我在一个根目录指向/ usr / local / studip / public /的子域中进行了尝试,并使其与以下参数一起使用:

location / {
    try_files $uri $uri/ /index.php;
}

location ~ \.php {
    fastcgi_split_path_info ^(.+\.php)(/.+)$;

    fastcgi_param  PATH_INFO          $fastcgi_path_info;
    fastcgi_param  PATH_TRANSLATED    $document_root$fastcgi_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  SCRIPT_NAME        $fastcgi_script_name;
    fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
    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_pass   unix:/var/www/sockets/www.socket;
    fastcgi_index  index.php;
}

But I got no idea how to port this to subfolder. 但是我不知道如何将其移植到子文件夹。

Any suggestions? 有什么建议么?

So here's what you do: 因此,这是您的工作:

For FCGI, DO NOT set fix_pathinfo to 0 as recommended!! 对于FCGI,请勿按照建议将fix_pathinfo设置为0! This causes an access denied status. 这将导致访问被拒绝状态。 Instead, make sure that this cgi.fix_pathinfo=1 or is commented out in your php.ini file. 相反,请确保在您的php.ini文件中将此cgi.fix_pathinfo = 1或注释掉。

Next, use this advanced location block in place of the one that's entered into your nginx site configuration file: 接下来,使用此高级位置块代替输入到nginx站点配置文件中的位置块:

location ~ [^/]\.php(/|$) {
    fastcgi_split_path_info ^(.+?\.php)(/.*)$;
    if (!-f $document_root$fastcgi_script_name) {
        return 404;
    }

    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_index index.php;
    include fastcgi_params;
    fastcgi_param  PATH_INFO $fastcgi_path_info;
}

If you are not passing by socket and are passing by local IP, use this fastcgi_pass instead: 如果您不是通过套接字传递而是通过本地IP传递,请改用以下fastcgi_pass:

fastcgi_pass 127.0.0.1:9000; fastcgi_pass 127.0.0.1:9000;

In your version of the fastcgi_params, remove $document_root from in front of your SCRIPT_FILENAME variable. 在您的fastcgi_params版本中,从SCRIPT_FILENAME变量前面删除$ document_root。 It's not necessary even with a subdirectory. 即使有子目录也没有必要。

That should do it. 那应该做。 Did it for me on Ubuntu 13.10 with PHP5. 是在PHP5的Ubuntu 13.10上为我完成的。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM