PHP-FPMが設定されたNginxHTTPサーバーがあり、ほとんどすべてが正常に動作します。私は行くことができるようになりたいです、path/to/file
そしてそれは私にそれを与えますindex.php?url=path/to/file
、それはそうします。ただし、実際のPHPをダウンロードし、ブラウザでは実行しません。何が原因なのかわかりません。
Nginx構成:
server {
listen 80;
server_name sandbox.domain.tld;
access_log /path/to/domain/log/sandbox.access.log;
error_log /path/to/domain/log/sandbox.error.log;
location / {
root /path/to/sandbox;
index index.php;
if (!-e $request_filename) {
rewrite ^/beta/(.+)$ /beta/index.php?url=$1 break;
}
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include /usr/local/nginx/conf/fastcgi_params;
fastcgi_param SCRIPT_FILENAME /path/to/sandbox$fastcgi_script_name;
}