github.com/drud/ddev@v1.21.5-alpha1.0.20230226034409-94fcc4b94453/containers/ddev-webserver/ddev-webserver-base-files/etc/nginx/common.d/xhprof.conf (about)

     1      # Handle xhprof queries if there are any
     2      location ^~ /xhprof {
     3          absolute_redirect off;
     4          alias   /var/xhprof/xhprof_html;
     5          index  index.php index.html;
     6  
     7          location ~ \.php$ {
     8            fastcgi_pass unix:/run/php-fpm.sock;
     9            include        fastcgi_params;
    10            fastcgi_param  SCRIPT_FILENAME $request_filename;
    11          }
    12      }