OK see if this helps. This assumes you're running Open SSL. I see you're
running mod_ssl but maybe some of this will be relevant.

First, at the end of our httpd.conf we have:



SSLMutex default

SSLRandomSeed startup builtin

SSLSessionCache none

Second, here's a sample Virtual Host of ours:

<VirtualHost xxx.xxx.xxx.xxx:443>

    SSLEngine On

    SSLCertificateFile {path to cert}

    SSLCertificateKeyFile {path to key}

    SSLProtocol all -SSLv3

    SSLCipherSuite
!EXP1024-RC4-SHA:!EXP1024-DES-CBC-SHA:ALL:!ADH:!EXP56:RC4+RSA:+HIGH:+MEDIUM:
+LOW:+SSLv2:+EXP:+eNULL

    ServerAdmin {admin email address}

    DocumentRoot "{path to root of site}"

    ServerName {domain}

    ErrorLog {path to error log}

    DirectoryIndex {default filename}

</VirtualHost>

It may be worth noting the the SSLProtocol and SSLCipherSuite entries were
necessary to get the SSL sites to run properly on older web clients
including Macintosh browsers and others.

Dylan

  _____  

From: Julie Strothman [mailto:[EMAIL PROTECTED]
Sent: Tuesday, January 06, 2004 12:04 PM
To: CF-Server
Subject: virtual host (or ssl) problem with cfm pages

Hi,
We've added a virtual host to handle https requests. The virt host serves
html pages correctly (with padlock), but throws a 500 error for cfm requests
(whether or not there is simple cf code on the page).

<CFMX updater 3, RedHat 8, apache 2.0.45, mod_ssl>

My understanding is this should not be an SSL issue as encryption happens
between client and web server. (I don't need to encrypt info b/w webserver
and cfmx server.)
I've followed directions regarding multihoming and CF.
(I copied the cfform.js file & disabled cacheRealPath.)
I ran the Web Server Configuration Tool from the command line and got the
message that jrun is already configured.
Do I need to remove all connectors and reconfigure or is there something
else I should be doing?

Some of the pertinent elements of the config file:
<VirtualHost _default_:443>
DocumentRoot "/var/www/ssl"
ServerName foobar.domain.edu:443
ServerAdmin [EMAIL PROTECTED]
ErrorLog logs/ssl_error_log
TransferLog logs/ssl_access_log
SSLEngine on
<Files ~ "\.(cgi|shtml|phtml|cfm|php3?)$">
    SSLOptions +StdEnvVars
</Files>
etc...
</VirtualHost>

LoadModule jrun_module /usr/local/cfmx/runtime/lib/wsconfig/1/mod_jrun20.so
<IfModule mod_jrun20.c>
    JRunConfig Verbose false
    JRunConfig Apialloc false
    JRunConfig Ssl false
    JRunConfig Ignoresuffixmap true
    JRunConfig Serverstore
/usr/local/cfmx/runtime/lib/wsconfig/1/jrunserver.store
    JRunConfig Bootstrap 127.0.0.1:51010
    #JRunConfig Errorurl <optionally redirect to this URL on errors>
    AddHandler jrun-handler .cfm .cfc .jsp .cfml .jws
</IfModule>

  _____
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to