]> git.pld-linux.org Git - packages/apache-mod_watch.git/blob - apache-mod_watch.conf
- rel 8
[packages/apache-mod_watch.git] / apache-mod_watch.conf
1 # $Id$
2
3 LoadModule watch_module modules/mod_watch.so
4
5 <IfModule mod_watch.c>
6   # The mechanism to use for the shared memory lock, useful to solve
7   # interoperability problems with modules like ruid2
8   # If you see a lot of '(20014)Internal error: shGetLockedEntry(...'
9   # try changing this option to file/fcntl/flock
10   # Valid mechanisms are: default, file, flock, fcntl, pthread
11   #WatchMutexMech file
12
13   # Allows the URL used to query virtual host data:
14   #
15   #   http://your.pld.machine/watch-info
16   #
17   <Location /watch-info>
18     SetHandler watch-info
19   </Location>
20
21   # Allows the URL used to query file owner and web
22   # server data:
23   #
24   #   http://your.pld.machine/~username/watch-info
25   #   http://your.pld.machine/~SERVER/watch-info
26   #
27   <Location /~*/watch-info>
28     SetHandler watch-info
29   </Location>
30   
31   <Location /watch-list>
32     SetHandler watch-list
33   </Location>
34 </IfModule>
35 # vim: filetype=apache ts=4 sw=4 et
This page took 0.049783 seconds and 3 git commands to generate.