Я использую nginx сPHP-FPM
Моему приложению необходимо перенаправлять все URL-адреса index.php
(см. nginx conf)
location / {
root /var/www/app/public/
try_files $uri /index.php?$args;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
try_files $fastcgi_script_name =404;
set $path_info $fastcgi_path_info;
fastcgi_param PATH_INFO $path_info;
fastcgi_index index.php;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
}
Для анализа некоторых проблем производительности я хотел использовать страницу статуса fpm. Но страница статуса не показывает мне реальный URI запроса
pid: 1369
state: Idle
start time: 03/Sep/2018:17:34:34 +0200
start since: 15
requests: 4
request duration: 29796
request method: GET
request URI: /index.php
content length: 0
user: -
script: /var/www/app/public/index.php
last request cpu: 67.12
last request memory: 6291456
Поэтому сложно сказать, какая страница обрабатывается в данный момент. Возможно ли добавить дополнительную информацию на страницу fpm-status или изменить URI запроса?
решение1
Мне это помогло:
location ~ ^/index\.php(/|$) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SERVER_NAME $http_host;
fastcgi_param SCRIPT_NAME $request_uri;
}
Ссылка:https://jolicode.com/blog/how-to-see-full-request-uri-in-fpm-status
решение2
До сих пор нет ответа, ошибка была обнаружена более 5 лет назад наhttps://bugs.php.net/bug.php?id=72319без ответа.
решение3
Вам необходимо добавить блок с собственным блоком с fastcgi_index
набором:
location ~ ^/_status$ {
include fastcgi_params
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index index.php;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
# the following is optional but nice to have
# it will restrict access to the local monitoring system
access_log off;
allow 127.0.0.1;
allow ::1;
deny all;
}
решение4
Для моей проблемы решение было таким:
fastcgi_param PATH_INFO $request_uri;