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 281b8a1 commit 012a514Copy full SHA for 012a514
README.md
@@ -0,0 +1,30 @@
1
+# mod_444
2
+
3
+Apache HTTP Server module that drops the connection (NGINX 444 style).
4
5
+## Requirements
6
7
+```shell
8
+apt-get install apache2-dev binutils
9
+```
10
11
+## Installation
12
13
14
+apxs -c -S LIBEXECDIR=/usr/local/lib/apache2/modules mod_444.c
15
+apxs -i -S LIBEXECDIR=/usr/local/lib/apache2/modules mod_444.la
16
+strip --strip-unneeded /usr/local/lib/apache2/modules/mod_444.so
17
18
19
+## Configuration
20
21
+```apache
22
+LoadModule mod_444_module /usr/local/lib/apache2/modules/mod_444.so
23
24
25
+## Usage
26
27
+```php
28
+http_response_code(444);
29
+exit;
30
0 commit comments