我想在一个特定的URL上使用fastcgi_param设置PHP_VALUE。
我的nginx配置看起来像这样:
server {
listen 80;
server_name test.domain;
root /var/www/test;
index index.php;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k;
fastcgi_read_timeout 300;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
location / {
try_files $uri $uri/ /index.php?$args;
}
}
我想专门设置类似的东西:
location /admin {
fastcgi_param PHP_VALUE "newrelic.enabled=false";
}
我到底要把它放在哪里?我之前尝试过粘贴它在现有位置块之后但在我执行之后它在该URL上返回404。
另外,这个位置/管理员应该抓住该URL之后的所有内容。我认为它已经存在,但我不确定它是否应该像/ admin /(.*)$.
请帮忙!