summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apache-mod_watch.conf19
-rw-r--r--apache1-mod_watch.conf19
2 files changed, 38 insertions, 0 deletions
diff --git a/apache-mod_watch.conf b/apache-mod_watch.conf
index e69de29..4ba6f90 100644
--- a/apache-mod_watch.conf
+++ b/apache-mod_watch.conf
@@ -0,0 +1,19 @@
+<IfModule mod_watch.c>
+ # Allows the URL used to query virtual host data:
+ #
+ # http://your.pld.machine/watch-info
+ #
+ <Location /watch-info>
+ SetHandler watch-info
+ </Location>
+
+ # Allows the URL used to query file owner and web
+ # server data:
+ #
+ # http://your.pld.machine/~username/watch-info
+ # http://your.pld.machine/~SERVER/watch-info
+ #
+ <Location /~*/watch-info>
+ SetHandler watch-info
+ </Location>
+</IfModule>
diff --git a/apache1-mod_watch.conf b/apache1-mod_watch.conf
index e69de29..4ba6f90 100644
--- a/apache1-mod_watch.conf
+++ b/apache1-mod_watch.conf
@@ -0,0 +1,19 @@
+<IfModule mod_watch.c>
+ # Allows the URL used to query virtual host data:
+ #
+ # http://your.pld.machine/watch-info
+ #
+ <Location /watch-info>
+ SetHandler watch-info
+ </Location>
+
+ # Allows the URL used to query file owner and web
+ # server data:
+ #
+ # http://your.pld.machine/~username/watch-info
+ # http://your.pld.machine/~SERVER/watch-info
+ #
+ <Location /~*/watch-info>
+ SetHandler watch-info
+ </Location>
+</IfModule>