We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e0df2e commit 3c5b737Copy full SHA for 3c5b737
nginx/conf/php.conf
@@ -29,3 +29,10 @@ location ~ \.php(.*)$
29
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
30
include fastcgi_params;
31
}
32
+
33
+location = /fpm-status
34
+{
35
+ include fastcgi_params;
36
+ fastcgi_pass php:9000;
37
+ fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
38
+}
php/conf/php-fpm.conf
@@ -19,6 +19,7 @@ pm.start_servers = 30
19
pm.min_spare_servers = 20
20
pm.max_spare_servers = 150
21
pm.max_requests = 1000
22
+pm.status_path = /fpm-status
23
24
clear_env = no
25
0 commit comments