Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 107061

Summary: 41_mod_ssl.default-vhost.conf has wrong certificate paths
Product: Gentoo Linux Reporter: NR <l3cc>
Component: [OLD] ServerAssignee: Gentoo Linux bug wranglers <bug-wranglers>
Status: RESOLVED INVALID    
Severity: minor    
Priority: High    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description NR 2005-09-23 20:54:59 UTC
apache-2.0.54-r31 changed to a new style directory structure, but the file
'/etc/apache2/modules.d/41_mod_ssl.default-vhost.conf' is still looking for all
'SSLCertificate...' in the old 'conf/ssl/' directory.


Reproducible: Always
Steps to Reproduce:
1. Emerge apache
2. Edit /etc/apache2/modules.d/41_mod_ssl.default-vhost.conf
3. See the paths from 'Server certificate' until 'Certificate Revocation Lists'

Actual Results:  
/etc/apache2/modules.d/41_mod_ssl.default-vhost.conf contains the 'old style'
paths, for example:
SSLCertificateFile conf/ssl/server.crt
SSLCertificateKeyFile conf/ssl/server.key
SSLCertificateChainFile conf/ssl/ca.crt

Expected Results:  
In the new style directory structure, paths in this file should be:
SSLCertificateFile ssl/server.crt
SSLCertificateKeyFile ssl/server.key
SSLCertificateChainFile ssl/ca.crt
Comment 1 NR 2005-09-23 21:07:12 UTC
'conf/ssl' is correct since it is a relative path accessed from
'/usr/lib/apache' where 'conf' links to '/etc/apache2' and everything fix...

I guest I was the bug!
Sorry.