Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 5ad9ec7

Browse files
committed
#246: Removes PHP-FPM status handler from server-status drop-in config.
1 parent f19195e commit 5ad9ec7

File tree

2 files changed

+8
-21
lines changed

2 files changed

+8
-21
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Summary of release changes.
2020
- Adds Makefile target `logsdef` to handle deferred logs output within a target chain.
2121
- Adds `/docs` directory for supplementary documentation and simplify README.
2222
- Fixes validation failure of 0 second --timeout value in `test/health_status`.
23+
- Removes PHP-FPM status handler configuration from the Apache server-status drop-in.
2324

2425
### 2.2.2 - 2019-08-05
2526

Lines changed: 7 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,11 @@
1-
<IfVersion < 2.4>
2-
<Location "/server-status">
3-
SetHandler server-status
1+
<Location "/server-status">
2+
SetHandler server-status
3+
<IfVersion < 2.4>
44
Order deny,allow
55
Deny from all
66
Allow from localhost 127.0.0.1
7-
</Location>
8-
<Location "/status">
9-
SetHandler "proxy:unix:/run/php-fpm/${APACHE_RUN_USER}.sock|fcgi://localhost"
10-
Order deny,allow
11-
Deny from all
12-
Allow from localhost 127.0.0.1
13-
</Location>
14-
</IfVersion>
15-
16-
<IfVersion >= 2.4>
17-
<Location "/server-status">
18-
SetHandler server-status
19-
Require host localhost 127.0.0.1
20-
</Location>
21-
<Location "/status">
22-
SetHandler "proxy:unix:/run/php-fpm/${APACHE_RUN_USER}.sock|fcgi://localhost"
7+
</IfVersion>
8+
<IfVersion >= 2.4>
239
Require host localhost 127.0.0.1
24-
</Location>
25-
</IfVersion>
10+
</IfVersion>
11+
</Location>

0 commit comments

Comments
 (0)