*** ssl.conf.ORIG Tue Apr 21 13:28:15 2009 --- ssl.conf Tue Apr 21 13:32:10 2009 *************** *** 35,40 **** --- 35,45 ---- # + # Tell Apache to load the SSL module + # + LoadModule ssl_module /opt/freeware/lib/httpd/modules/mod_ssl.so + + # # When we also provide SSL we have to listen to the # standard HTTP port (see above) and to the HTTPS port # *************** *** 66,80 **** # Configure the SSL Session Cache: First the mechanism # to use and second the expiring timeout (in seconds). #SSLSessionCache none ! #SSLSessionCache shmht:/var/logs/ssl_scache(512000) ! #SSLSessionCache shmcb:/var/logs/ssl_scache(512000) ! SSLSessionCache dbm:/var/logs/ssl_scache SSLSessionCacheTimeout 300 # Semaphore: # Configure the path to the mutual exclusion semaphore the # SSL engine uses internally for inter-process synchronization. ! SSLMutex file:/var/logs/ssl_mutex ## ## SSL Virtual Host Context --- 71,85 ---- # Configure the SSL Session Cache: First the mechanism # to use and second the expiring timeout (in seconds). #SSLSessionCache none ! #SSLSessionCache shmht:/var/log/httpd/ssl_scache(512000) ! #SSLSessionCache shmcb:/var/log/httpd/ssl_scache(512000) ! SSLSessionCache dbm:/var/log/httpd/ssl_scache SSLSessionCacheTimeout 300 # Semaphore: # Configure the path to the mutual exclusion semaphore the # SSL engine uses internally for inter-process synchronization. ! SSLMutex file:/var/log/httpd/ssl_mutex ## ## SSL Virtual Host Context *************** *** 86,93 **** DocumentRoot "/var/www/htdocs" ServerName www.example.com:443 ServerAdmin you@example.com ! ErrorLog /var/logs/error_log ! TransferLog /var/logs/access_log # SSL Engine Switch: # Enable/Disable SSL for this virtual host. --- 91,98 ---- DocumentRoot "/var/www/htdocs" ServerName www.example.com:443 ServerAdmin you@example.com ! ErrorLog /var/log/httpd/error_log ! TransferLog /var/log/httpd/access_log # SSL Engine Switch: # Enable/Disable SSL for this virtual host. *************** *** 238,244 **** # Per-Server Logging: # The home of a custom SSL log file. Use this when you want a # compact non-error SSL logfile on a virtual host basis. ! CustomLog /var/logs/ssl_request_log \ "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" --- 243,249 ---- # Per-Server Logging: # The home of a custom SSL log file. Use this when you want a # compact non-error SSL logfile on a virtual host basis. ! CustomLog /var/log/httpd/ssl_request_log \ "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"