mod_ifexists - Apache conditional config module using the existence of file


INTRO

This module provides Apache conditional configuration process by the existence of the file


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>