diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2008-01-29 18:19:59 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2008-01-29 18:19:59 +0000 |
commit | a983a6d78935125c19cd4ba8d3dbfe7b83c3895f (patch) | |
tree | 5be20f668f512e4dcd1658e28399697114140999 /www-apache/mod_watch/files | |
parent | Add a slot dep on libsoup to prepare for the new 2.4 slot (diff) | |
download | gentoo-2-a983a6d78935125c19cd4ba8d3dbfe7b83c3895f.tar.gz gentoo-2-a983a6d78935125c19cd4ba8d3dbfe7b83c3895f.tar.bz2 gentoo-2-a983a6d78935125c19cd4ba8d3dbfe7b83c3895f.zip |
fix depend.apache usage wrt #208033; update metadata; cleanup
(Portage version: 2.1.4)
Diffstat (limited to 'www-apache/mod_watch/files')
-rw-r--r-- | www-apache/mod_watch/files/77_mod_watch.conf | 59 |
1 files changed, 29 insertions, 30 deletions
diff --git a/www-apache/mod_watch/files/77_mod_watch.conf b/www-apache/mod_watch/files/77_mod_watch.conf index 9d438ab2b410..b35f5b86f726 100644 --- a/www-apache/mod_watch/files/77_mod_watch.conf +++ b/www-apache/mod_watch/files/77_mod_watch.conf @@ -1,33 +1,32 @@ <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> +LoadModule watch_module modules/mod_watch.so + +# 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> +# 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> +</IfDefine> - # 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> +# vim: ts=4 filetype=apache |