File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ location = /fpm-status {
14
14
return 404 ;
15
15
}
16
16
fastcgi_pass www0;
17
+ access_log off ;
17
18
}
18
19
19
20
## The ping page is at /ping and returns the string configured at the php-fpm level.
@@ -23,6 +24,7 @@ location = /ping {
23
24
return 404 ;
24
25
}
25
26
fastcgi_pass www0;
27
+ access_log off ;
26
28
}
27
29
28
30
## This is for the second pool. It assumes that you've configured
@@ -37,6 +39,7 @@ location = /fpm-status-zwei {
37
39
return 404 ;
38
40
}
39
41
fastcgi_pass www1;
42
+ access_log off ;
40
43
}
41
44
42
45
## The ping page is at /ping and returns the string configured at the php-fpm level.
@@ -46,6 +49,7 @@ location = /ping-zwei {
46
49
return 404 ;
47
50
}
48
51
fastcgi_pass www1;
52
+ access_log off ;
49
53
}
50
54
51
55
## This is for the third pool that acts as backup. It assumes that
@@ -61,6 +65,7 @@ location = /fpm-status-drei {
61
65
return 404 ;
62
66
}
63
67
fastcgi_pass phpcgi;
68
+ access_log off ;
64
69
}
65
70
66
71
## The ping page is at /ping and returns the string configured at the php-fpm level.
@@ -70,4 +75,5 @@ location = /ping-drei {
70
75
return 404 ;
71
76
}
72
77
fastcgi_pass phpcgi;
78
+ access_log off ;
73
79
}
You can’t perform that action at this time.
0 commit comments