Dr_Brown, можеш показать как сделал?скопируй в нее содержимое локации /, тогда заработает.
root $root_path;
set $root_path /var/www/html/tracker;
set $php_sock unix:/var/run/php/php7.2-fpm.sock;
index index.php index.html;
location ^~ /bt/ {
access_log off;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass $php_sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}