URL/ServerName の一部に基づいてプロジェクト フォルダー (document_root) をすべて動的に選択できる nginx 構成を実現しようとしています。
たとえば、次のような Web サーバー ディレクトリがあるとします。
/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
実際に存在しない場合は、リダイレクト ループが発生します。