Back to home page

EIC code displayed by LXR

 
 

    


Warning, /harvester/docker/ssl-httpd.conf is written in an unsupported language. File is not indexed.

0001 Listen 8443
0002 
0003 LoadModule ssl_module /usr/lib64/httpd/modules/mod_ssl.so
0004 LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
0005 LoadModule log_config_module    /usr/lib64/httpd/modules/mod_log_config.so
0006 LoadModule setenvif_module    /usr/lib64/httpd/modules/mod_setenvif.so
0007 
0008 <IfModule mod_ssl.c>
0009   SSLRandomSeed startup builtin
0010   SSLRandomSeed startup file:/dev/urandom 512
0011   SSLRandomSeed connect builtin
0012   SSLRandomSeed connect file:/dev/urandom 512
0013 
0014   AddType application/x-x509-ca-cert .crt
0015   AddType application/x-pkcs7-crl    .crl
0016 
0017   AddType text/plain .txt
0018   AddType text/plain .out
0019   AddType text/plain .err
0020   AddType text/plain .log
0021   AddType text/plain .stderr
0022   AddType text/plain .stdout
0023 
0024   SSLPassPhraseDialog builtin
0025   # SSLSessionCache "shmcb:/var/cache/httpd/mod_ssl/scache(512000)"
0026   # SSLSessionCacheTimeout 300
0027   Mutex default
0028   SSLCryptoDevice builtin
0029   SSLHonorCipherOrder On
0030   SSLUseStapling Off
0031   # SSLStaplingCache "shmcb:/var/cache/httpd/mod_ssl/ssl_stapling(32768)"
0032   SSLCipherSuite ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384
0033   SSLProtocol all -SSLv2 -SSLv3 -TLSv1 -TLSv1.1
0034   SSLOptions StdEnvVars
0035 </IfModule>
0036 
0037 
0038 <VirtualHost *:8443>
0039     DocumentRoot "/var/www/html"
0040 
0041     ## SSL directives
0042     SSLEngine on
0043 
0044     # SSLCertificateFile /etc/pki/tls/certs/localhost.crt
0045     # SSLCertificateKeyFile /etc/pki/tls/private/localhost.key
0046     # SSLCertificateChainFile /etc/pki/tls/certs/server-chain.crt
0047     # SSLCACertificateFile /etc/pki/tls/certs/ca-bundle.crt
0048 
0049     SSLCertificateFile      "/etc/grid-security/hostcert.pem"
0050     SSLCertificateKeyFile   "/etc/grid-security/hostkey.pem"
0051     SSLCertificateChainFile "/etc/grid-security/chain.pem"
0052     KeepAlive off
0053 </VirtualHost>