nginx 동적 호스트 및 디렉터리 path_info 누락

nginx 동적 호스트 및 디렉터리 path_info 누락

URL/ServerName의 일부를 기반으로 프로젝트 폴더(document_root)를 모두 동적으로 선택할 수 있는 nginx 구성을 수행하려고 합니다.

따라서 다음과 같은 웹 서버 디렉토리가 있다면:

/var/www/projecta
/var/www/project-b
/var/www/projectc

그리고 다음과 같은 URL 일치 항목을 얻었습니다.

www.something.projecta.demo.com -> /var/www/projecta/
xyz.project-b.demo.com -> /var/www/projectb/
aaa.bbb.ccc.ddd.projectc.demo.com -> /var/www/projectc/

등등.

다음 구성으로 시도하면 정적 파일에서는 작동하지만 PHP에서는 작동하지 않습니다. 내가 보고 말할 수 있는 한 path_info는 항상 비어 있습니다.

upstream php-www {
  server unix:/dev/shm/php-www.socket;
}

server {
  listen *:80;
  server_name  ~^(?<subdomain>.+)(?<project>[^.]+).demo.com;
  root /var/www/$project/htdocs/;

  index index.php;

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

  location ~ [^/]\.php(/|$) {
      include fastcgi_params;

      #Save path_info before it gets killed
      set $path_info $fastcgi_path_info;
      fastcgi_param PATH_INFO $path_info;
      fastcgi_param SCRIPT_FILENAME  $document_root$fastcgi_script_name;

      fastcgi_ignore_client_abort off;
      fastcgi_pass php-www;
      fastcgi_index index.php;

      fastcgi_split_path_info ^(.+?\.php)(/.*)$;

      try_files $fastcgi_script_name $uri /index.php?$query_string;
  }
}

php-location이 아닌 정적 파일을 사용하면 훌륭하게 작동하는 것 같습니다. index.php에는 실제로 phpinfo()만 포함되어 있습니다.

내가 받는 오류 메시지는 다음과 같습니다.

[error] 7763#7763: *3 rewrite or internal redirection cycle while internally redirecting to "/index.php", client: 192.168.2.100, server: ~^(?<subdomain>.+)(?<project>[^.]+).demo.com, request: "GET / HTTP/1.1", host: "www.foo.bar.demo.com"

어떤 아이디어가 있나요?

추가 정보:

OS: Debian Jessie(원래 nginx 저장소) PHP 버전: PHP 5.6.29-0+deb8u1(cgi.fix_pathinfo=0) nginx 버전 출력:

nginx version: nginx/1.10.2
built by gcc 4.9.2 (Debian 4.9.2-10)
built with OpenSSL 1.0.1t  3 May 2016
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-file-aio --with-threads --with-ipv6 --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_ssl_module --with-cc-opt='-g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -Wl,--as-needed'

답변1

오류 메시지는 /index.php아마도 마지막 문을 가리키는 리디렉션 루프입니다 try_files. 분명히 URI를 처리한 $fastcgi_script_name후에는 유효하지 않습니다 . fastcgi_split_path_info주의할 점은공식적인 nginx레시피사용을 피하고 대신 블록 try_files을 사용합니다 if.

나는 당신이 시도하는 것이 좋습니다:

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

    fastcgi_pass php-www;
    fastcgi_index index.php;

    include fastcgi_params;
    fastcgi_param PATH_INFO $fastcgi_path_info;
    fastcgi_param SCRIPT_FILENAME  $document_root$fastcgi_script_name;

    fastcgi_ignore_client_abort off;
}

물론 /index.php실제로 존재하지 않는 경우에도 리디렉션 루프가 발생합니다.

관련 정보