Skip to content

Commit 9fb2f57

Browse files
author
António P. P. Almeida
committed
* php-fpm status fix for two pools.
1 parent 88d05c3 commit 9fb2f57

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

php_fpm_status_vhost.conf

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ location = /fpm-status {
1313
if ($dont_show_fpm_status) {
1414
return 404;
1515
}
16-
fastcgi_pass phpcgi;
16+
fastcgi_pass www0;
1717
}
1818

1919
## The ping page is at /ping and returns the string configured at the php-fpm level.
@@ -22,7 +22,7 @@ location = /ping {
2222
if ($dont_show_fpm_status) {
2323
return 404;
2424
}
25-
fastcgi_pass phpcgi;
25+
fastcgi_pass www0;
2626
}
2727

2828
## This is for the second pool. It assumes that you've configured
@@ -36,7 +36,7 @@ location = /fpm-status-zwei {
3636
if ($dont_show_fpm_status) {
3737
return 404;
3838
}
39-
fastcgi_pass phpcgi;
39+
fastcgi_pass www1;
4040
}
4141

4242
## The ping page is at /ping and returns the string configured at the php-fpm level.
@@ -45,7 +45,7 @@ location = /ping-zwei {
4545
if ($dont_show_fpm_status) {
4646
return 404;
4747
}
48-
fastcgi_pass phpcgi;
48+
fastcgi_pass www1;
4949
}
5050

5151
## This is for the third pool that acts as backup. It assumes that

0 commit comments

Comments
 (0)