Hi all,
I am attempting to conditionally load a module based on a previously set
variable (which is, incidentally, contained in another file and included at the
beginning of httpd.conf):
* spec_includes.conf
Define ENABLELDAP 0
* httpd.conf
Include conf/spec_includes.conf
[..]
<If "${ENABLELDAP} == 1">
LoadModule authnz_sspi_module
modules/mod_authnz_sspi.so
</If>
However this does not seem to be working, the module always ends up being
loaded.
The value is correctly initialized (httpd.exe -S) :
[..]
Define: ENABLELDAP=0
[..]
Is such a configuration even possible?
Thank you.
Andrea