Thomas Barth
2014-12-27 11:55:09 UTC
Hello,
I had to renew a self signed certificate for Apache2 webserver
(Apache/2.2.16 Debian) and after importing the certificate as CA, Google
Chrome still says, that the Website is using old security settings and
it may be possible that further chrome versions can't read the settings
for sure. I would like to know what I have to change to get rid of this
warning.
I used the official openssl method to create the certificate as
described in https://www.openssl.org/docs/HOWTO/certificates.txt
# generate private rsa key
openssl genrsa -out sub.domain.key 4096
# creating a self-signed test certificate
openssl req -new -x509 -key sub.domain.key -out sub.domain.crt -days 1095
In apache2 default-ssl
SSLEngine on
SSLCertificateFile /etc/ssl/certs/sub.domain.crt
SSLCertificateKeyFile /etc/ssl/certs/sub.domain.key
In another docu I read to add the following lines to get more security
SSLHonorCipherOrder On
SSLCipherSuite
ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:RC4:HIGH:!MD5:!aNULL:!EDH
But with these settings I get the same warning.
The webserver is not really public, it s only used by a very small group
of people who all import the self signed certificate. But what could
cause the warning in Google Chrome?
Thomas B.
I had to renew a self signed certificate for Apache2 webserver
(Apache/2.2.16 Debian) and after importing the certificate as CA, Google
Chrome still says, that the Website is using old security settings and
it may be possible that further chrome versions can't read the settings
for sure. I would like to know what I have to change to get rid of this
warning.
I used the official openssl method to create the certificate as
described in https://www.openssl.org/docs/HOWTO/certificates.txt
# generate private rsa key
openssl genrsa -out sub.domain.key 4096
# creating a self-signed test certificate
openssl req -new -x509 -key sub.domain.key -out sub.domain.crt -days 1095
In apache2 default-ssl
SSLEngine on
SSLCertificateFile /etc/ssl/certs/sub.domain.crt
SSLCertificateKeyFile /etc/ssl/certs/sub.domain.key
In another docu I read to add the following lines to get more security
SSLHonorCipherOrder On
SSLCipherSuite
ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:RC4:HIGH:!MD5:!aNULL:!EDH
But with these settings I get the same warning.
The webserver is not really public, it s only used by a very small group
of people who all import the self signed certificate. But what could
cause the warning in Google Chrome?
Thomas B.