Estoy usando nginx conPHP-FPM
Mi aplicación requiere que se redirijan todas las URL index.php
(consulte 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;
}
Para analizar algunos problemas de rendimiento, quería utilizar la página de estado de fpm. Pero la página de estado no me muestra el URI de solicitud real
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
Por lo tanto, es difícil saber qué página se está procesando actualmente. ¿Es posible agregar información adicional a la página fpm-status o cambiar el URI de solicitud?
Respuesta1
Esto funcionó para mí:
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;
}
Árbitro:https://jolicode.com/blog/how-to-see-full-request-uri-in-fpm-status
Respuesta2
Aún no hay respuesta, se abrió un error hace más de 5 años enhttps://bugs.php.net/bug.php?id=72319sin respuesta.
Respuesta3
Tienes que agregar un bloque con su propio bloque con un fastcgi_index
conjunto:
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;
}
Respuesta4
Para mi problema la solución fue:
fastcgi_param PATH_INFO $request_uri;