summaryrefslogtreecommitdiff
path: root/.b/etc/apache2/modules.d/00_mod_status.conf
diff options
context:
space:
mode:
authorSyndamia <kamen@syndamia.com>2022-09-06 10:53:34 +0300
committerSyndamia <kamen@syndamia.com>2022-09-06 10:53:34 +0300
commitabdbd80ac4dcc42619ee4ed12c19fb5d71fa2d83 (patch)
treeba3e845eefb201676fcc87e964ab5035f3222585 /.b/etc/apache2/modules.d/00_mod_status.conf
parentdd6a62a3c881c0b2e71db5bb923c60a54d2b016d (diff)
downloaddotfiles-abdbd80ac4dcc42619ee4ed12c19fb5d71fa2d83.tar
dotfiles-abdbd80ac4dcc42619ee4ed12c19fb5d71fa2d83.tar.gz
dotfiles-abdbd80ac4dcc42619ee4ed12c19fb5d71fa2d83.zip
Added many configs to .b
Diffstat (limited to '.b/etc/apache2/modules.d/00_mod_status.conf')
-rw-r--r--.b/etc/apache2/modules.d/00_mod_status.conf15
1 files changed, 15 insertions, 0 deletions
diff --git a/.b/etc/apache2/modules.d/00_mod_status.conf b/.b/etc/apache2/modules.d/00_mod_status.conf
new file mode 100644
index 0000000..ed8b3c7
--- /dev/null
+++ b/.b/etc/apache2/modules.d/00_mod_status.conf
@@ -0,0 +1,15 @@
+<IfDefine STATUS>
+# Allow server status reports generated by mod_status,
+# with the URL of http://servername/server-status
+<Location /server-status>
+ SetHandler server-status
+ Require local
+</Location>
+
+# ExtendedStatus controls whether Apache will generate "full" status
+# information (ExtendedStatus On) or just basic information (ExtendedStatus
+# Off) when the "server-status" handler is called.
+ExtendedStatus On
+</IfDefine>
+
+# vim: ts=4 filetype=apache