Greg's Blog

helping me remember what I figure out

ifModule

| Comments

Been meaning to post this for quite a while and a recent post on the BlueDragon mailing list reminded me to do so. Using the IfModule statement in your httpd.conf, you can check whether modules have been loaded and then carry out further configuration. Below is a sample of my httpd.conf for use with BlueDragon. [code] ServletExecInstances default 127.0.0.1:9999 ServletExecAliases default /servlet servlet .jsp .cfc .cfm .cfml SetHandler servlet-exec AddHandler servlet-exec jsp AddHandler servlet-exec cfc AddHandler servlet-exec cfm AddHandler servlet-exec cfml [/code]