summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-apache/mod_watch/files/77_mod_watch.conf')
-rw-r--r--www-apache/mod_watch/files/77_mod_watch.conf33
1 files changed, 33 insertions, 0 deletions
diff --git a/www-apache/mod_watch/files/77_mod_watch.conf b/www-apache/mod_watch/files/77_mod_watch.conf
new file mode 100644
index 000000000000..9d438ab2b410
--- /dev/null
+++ b/www-apache/mod_watch/files/77_mod_watch.conf
@@ -0,0 +1,33 @@
+<IfDefine WATCH>
+ <IfModule !mod_watch.c>
+ LoadModule watch_module modules/mod_watch.so
+ </IfModule>
+</IfDefine>
+<IfModule mod_watch.c>
+ # Allows the URL used to query virtual host data:
+ #
+ # http://www.snert.com/watch-info
+ #
+ <Location /watch-info>
+ SetHandler watch-info
+ </Location>
+
+ # Allows the URL used to query file owner and web
+ # server data:
+ #
+ # http://www.snert.com/~achowe/watch-info
+ # http://www.snert.com/~SERVER/watch-info
+ #
+ <Location /~*/watch-info>
+ SetHandler watch-info
+ </Location>
+
+ # Intended for debugging and analysis of shared memory
+ # hash table and weenie files:
+ #
+ # http://www.snert.com/watch-table
+ #
+ <Location /watch-table>
+ SetHandler watch-table
+ </Location>
+</IfModule>