Full_Name: Brad Cox
Version: mod_ssl-2.0.13-1.3.3/
OS: Linux/mod_perl
Submission from: pwp001.dialup.gmu.edu (129.174.193.201)


Please critique the following and if correct, add it as an httpd.conf "how to"
section in your manual. It took mme longer than I'd like to admit getting this
working. I'd like to save other newbies the time.

Note the commented-out lines which I took from your ApacheCon presentation,
looking for a model to follow. They don't work, presumably because they apply to
a later version than I have (I thought I had the latest).

Listen 80
ServerName your.domain.org
DocumentRoot /usr/local/htdocs
ErrorLog /usr/local/apache/var/log/error_log
TransferLog /usr/local/apache/var/log/access_log
ServerAdmin your.email.address
<IfDefine MOD_SSL>
        SSLDisable
        Listen 443
        <VirtualHost your.ip.address:443>
                ServerName your.domain.org
                SSLCacheServerPort /usr/local/apache/var/run/ssl_gcache_port
                SSLCacheServerPath /usr/local/apache/sbin/ssl_gcache
                SSLCACertificateFile /usr/local/apache/conf/ssl.csr/server.csr
                SSLCertificateFile /usr/local/apache/conf/ssl.crt/server.crt
                SSLCertificateKeyFile /usr/local/apache/conf/ssl.key/server.key
                SSLLogFile /usr/local/apache/var/log/ssl.log
SSLRequireSSL
                SSLSessionCacheTimeout 15
                SSLVerifyDepth 10
                SSLEnable
#               SLVerifyClient none
#               SSLMutex file:/usr/local/apache/var/run/ssl.mutex
#               SSLSessionCache /usr/local/apache/var/run/ssl.scache
#   SSLEngine on
        </VirtualHost>
</IfDefine>


______________________________________________________________________
Apache Interface to SSLeay (mod_ssl)   www.engelschall.com/sw/mod_ssl/
Official Support Mailing List               [EMAIL PROTECTED]
Automated List Manager                       [EMAIL PROTECTED]

Reply via email to