Apache conditional config module. using the existence of file.
INTRO
This module provides Apache conditional configuration process by the existence of the file
INSTALL
- Make mod_ifexists as a DSO module. modify your Makefile. INC, LIB and apxs path.
% make APXS=/path/to/apxs
# make install
CONFIG EXAMPLE
<IfExists conf/foo.conf>
Include conf/foo.conf
</IfExists>
# if "NOT" exists the file
<IfExists !/path/to/foo>
SomeDirective..
</IfExists>
BUGS
- this module can not define the nested condition.
AUTHOR
IKEBE Tomohiro <ikechin@0xfa.com>
