Pete Freitag Pete Freitag

BlueDragon httpd.conf settings

Published on August 17, 2004
By Pete Freitag
coldfusion

Here are the settings that bluedragon 6.1 adds to your httpd.conf file. I am posting these because it is helpful when your trying to install on an unsupported platform.

ServletExecInstances default 127.0.0.1:9999
ServletExecAliases default /servlet servlet .jsp .cfc .cfm .cfml

<Location /servlet>
    SetHandler servlet-exec
</Location>

<Location servlet>
        SetHandler servlet-exec
</Location>

AddHandler servlet-exec jsp
AddHandler servlet-exec cfc
AddHandler servlet-exec cfm
AddHandler servlet-exec cfml


bluedragon apache linux

BlueDragon httpd.conf settings was first published on August 17, 2004.

If you like reading about bluedragon, apache, or linux then you might also like:

FuseGuard Web App Firewall for ColdFusion

The FuseGuard Web Application Firewall for ColdFusion & CFML is a high performance, customizable engine that blocks various attacks against your ColdFusion applications.

CFBreak
The weekly newsletter for the CFML Community


Comments

BlueDragon also adds this line:

LoadModule servletexec_module /path/to/mod_servletexec.so
by Pete Freitag on 08/18/2004 at 12:40:48 PM UTC
Is there anything else that BlueDragon does when it installs on top of another server like apache? i have manually modified my conf but when apache attempts to load the module during start up I get a syntax error for that line of the conf even though it is the same as above.
by Adam Bragg on 09/17/2004 at 1:45:09 AM UTC
Here is the exact error I get:
Syntax error on line 199 of /Library/Tenon/WebServer/Configuration/httpd.conf:
Cannot load /Library/Tenon/BlueDragon_Server/bin/apache/mod_servletexec.so into server: dyld: /Library/Tenon/WebServer/Executables/httpd Undefined symbols:\n_ap_bsetopt\n_ap_ctx_get\n_ap_hard_timeout\n_ap_kill_timeout\n_ap_make_sub_pool\n_ap_palloc\n_ap_pcalloc\n_ap_pclosesocket\n_ap_psocket\n_ap_reset_timeout\n_ap_send_http_header\n_ap_table_get\n
by Adam Bragg on 09/17/2004 at 1:52:50 AM UTC