| |
@@ -150,7 +150,7 @@
|
| |
httpHTTPD=${httpHTTPD:-httpd}
|
| |
httpSSL_CRT=${httpSSL_CRT:-/etc/pki/tls/certs/localhost.crt}
|
| |
httpSSL_KEY=${httpSSL_KEY:-/etc/pki/tls/private/localhost.key}
|
| |
- httpSSL_PEM=${httpSSL_PEM:-/etc/pki/tls/cert.pem}
|
| |
+ httpSSL_PEM=${httpSSL_PEM:-/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem}
|
| |
httpSSL_O=${httpSSL_O:-`hostname`}
|
| |
httpSSL_CN=${httpSSL_CN:-`hostname`}
|
| |
httpLOGDIR=${httpLOGDIR:-/var/log/httpd}
|
| |
/etc/pki/tls/cert.pem has been removed in Rawhide. See
https://fedoraproject.org/wiki/Changes/dropingOfCertPemFile (yes,
even though that's a pending Change, this already happened). This
causes tests of httpd to fail:
Fix this by using the preferred path for this bundle as produced
by update-ca-trust.
Signed-off-by: Adam Williamson awilliam@redhat.com