Ngigx + PHP-FPMのセットアップとルートディレクトリでの作業ですが、仮想ディレクトリを機能させるのに問題があります。
//localhost/pb/test.phpでc:\ opt \ php \ public \ test.phpを実行したいのですが、「入力ファイルが指定されていません」で壊れます。実際、.htmlファイルでも機能しませんが、機能したら、php-directiveを/pbでも機能させたいと思います。
現在のnginx.conf:
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm index.php;
}
location /pb/ {
root /opt/php/public;
index index.html index.htm index.php;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9123;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}