Changeset 1768 for trunk/server/fedora
- Timestamp:
- Jan 2, 2011, 8:12:11 PM (14 years ago)
- Location:
- trunk/server/fedora/config/etc/httpd
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/fedora/config/etc/httpd/conf/httpd.conf
r1732 r1768 326 326 SSLCryptoDevice builtin 327 327 SSLCertificateFile /etc/pki/tls/certs/star.scripts.pem 328 SSLCertificateKeyFile /etc/pki/tls/private/scripts .key328 SSLCertificateKeyFile /etc/pki/tls/private/scripts-1024.key 329 329 SSLCACertificateFile /etc/pki/tls/certs/ca.pem 330 330 SSLVerifyClient none -
trunk/server/fedora/config/etc/httpd/vhosts.d/finance.blue-sun-corp.com.conf
r1766 r1768 19 19 Include conf.d/vhosts-common-ssl.conf 20 20 SSLCertificateFile /etc/pki/tls/certs/blue-sun-corp.com.pem 21 SSLCertificateKeyFile /etc/pki/tls/private/scripts -new.key21 SSLCertificateKeyFile /etc/pki/tls/private/scripts.key 22 22 </VirtualHost> 23 23 <VirtualHost *:444> … … 30 30 Include conf.d/vhosts-common-ssl-cert.conf 31 31 SSLCertificateFile /etc/pki/tls/certs/blue-sun-corp.com.pem 32 SSLCertificateKeyFile /etc/pki/tls/private/scripts -new.key32 SSLCertificateKeyFile /etc/pki/tls/private/scripts.key 33 33 </VirtualHost> 34 34 </IfModule> -
trunk/server/fedora/config/etc/httpd/vhosts.d/music.blue-sun-corp.com.conf
r1766 r1768 19 19 Include conf.d/vhosts-common-ssl.conf 20 20 SSLCertificateFile /etc/pki/tls/certs/blue-sun-corp.com.pem 21 SSLCertificateKeyFile /etc/pki/tls/private/scripts -new.key21 SSLCertificateKeyFile /etc/pki/tls/private/scripts.key 22 22 </VirtualHost> 23 23 <VirtualHost *:444> … … 30 30 Include conf.d/vhosts-common-ssl-cert.conf 31 31 SSLCertificateFile /etc/pki/tls/certs/blue-sun-corp.com.pem 32 SSLCertificateKeyFile /etc/pki/tls/private/scripts -new.key32 SSLCertificateKeyFile /etc/pki/tls/private/scripts.key 33 33 </VirtualHost> 34 34 </IfModule> -
trunk/server/fedora/config/etc/httpd/vhosts.d/reify-vhost.py
r1449 r1768 12 12 # 13 13 # Geoffrey Thomas <geofft@mit.edu>, 2008, public domain. 14 15 # Note: As of 1/2011 we are inserting SSLCertificateKeyFile into reified 16 # hosts, because previously-acqured certificates were signed with an 17 # older (1024-bit) key. Sometime around 2014 when our last cert with 18 # this key expires, we can update /etc/httpd/conf/httpd.conf to point to 19 # the current key instead of the old one, and stop inserting this into 20 # individual vhost records. -geofft 14 21 15 22 import ldap … … 56 63 Include conf.d/vhosts-common-ssl.conf 57 64 SSLCertificateFile /etc/pki/tls/certs/%(hname)s.pem 65 SSLCertificateKeyFile /etc/pki/tls/private/scripts.key 58 66 </VirtualHost> 59 67 <VirtualHost *:444> … … 66 74 Include conf.d/vhosts-common-ssl-cert.conf 67 75 SSLCertificateFile /etc/pki/tls/certs/%(hname)s.pem 76 SSLCertificateKeyFile /etc/pki/tls/private/scripts.key 68 77 </VirtualHost> 69 78 </IfModule>""" % { -
trunk/server/fedora/config/etc/httpd/vhosts.d/trac.blue-sun-corp.com.conf
r1766 r1768 19 19 Include conf.d/vhosts-common-ssl.conf 20 20 SSLCertificateFile /etc/pki/tls/certs/blue-sun-corp.com.pem 21 SSLCertificateKeyFile /etc/pki/tls/private/scripts -new.key21 SSLCertificateKeyFile /etc/pki/tls/private/scripts.key 22 22 </VirtualHost> 23 23 <VirtualHost *:444> … … 30 30 Include conf.d/vhosts-common-ssl-cert.conf 31 31 SSLCertificateFile /etc/pki/tls/certs/blue-sun-corp.com.pem 32 SSLCertificateKeyFile /etc/pki/tls/private/scripts -new.key32 SSLCertificateKeyFile /etc/pki/tls/private/scripts.key 33 33 </VirtualHost> 34 34 </IfModule>
Note: See TracChangeset
for help on using the changeset viewer.