Changeset 233


Ignore:
Timestamp:
Mar 14, 2007, 6:35:16 PM (17 years ago)
Author:
presbrey
Message:
disable KeepAlives for HTTPS (MediaWiki+LVS+RandomPage bug)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/fedora/config/etc/httpd/conf/httpd.conf

    r231 r233  
    261261Listen 80
    262262
    263 <IfModule mod_ssl.c>
    264 Listen 443
    265 
    266 AddType application/x-x509-ca-cert .crt
    267 AddType application/x-pkcs7-crl    .crl
    268 
    269 SSLPassPhraseDialog  builtin
    270 SSLSessionCache dbm:/var/run/ssl_scache
    271 SSLSessionCacheTimeout 300
    272 SSLMutex file:/var/run/ssl_mutex
    273 SSLRandomSeed startup builtin
    274 SSLRandomSeed connect builtin
    275 </IfModule>
    276 
    277263RLimitCPU 60 60
    278264RLimitMEM 268435456 268435456
     
    330316
    331317<IfModule mod_ssl.c>
     318        Listen 443
     319
     320        AddType application/x-x509-ca-cert .crt
     321        AddType application/x-pkcs7-crl    .crl
     322
     323        SSLPassPhraseDialog  builtin
     324        SSLSessionCache dbm:/var/run/ssl_scache
     325        SSLSessionCacheTimeout 300
     326        SSLMutex file:/var/run/ssl_mutex
     327        SSLRandomSeed startup builtin
     328        SSLRandomSeed connect builtin
    332329        SSLCertificateFile /etc/pki/tls/certs/cert-new.pem
    333330        SSLCertificateKeyFile /etc/pki/tls/private/localhost.key
     
    348345                SSLVerifyDepth 1
    349346                SSLOptions +StdEnvVars
     347                KeepAlive Off
    350348        </VirtualHost>
    351349        <VirtualHost *:443>
     
    355353                RewriteEngine Off
    356354                SSLEngine on
     355                KeepAlive Off
    357356        </VirtualHost>
    358357        <VirtualHost *:443>
     
    364363                RewriteEngine Off
    365364                SSLEngine on
     365                KeepAlive Off
    366366        </VirtualHost>
    367367</IfModule>
Note: See TracChangeset for help on using the changeset viewer.