We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The apache ssl config is not secure enough. The ssl test at https://ssllabs.com/ssltest only gives an overall rating of "B".
Please check https://bettercrypto.org/#_apache for better apache configuration.
The "header" parameters are not necessary for a better rating, but the parameters SSLProtocol and SSLCipherSuite are important.
Add this in /etc/apache2/sites-available/000-default.conf before line "</VirtualHost>":
SSLProtocol All -SSLv2 -SSLv3 -TLSv1 -TLSv1.1 SSLHonorCipherOrder On SSLCompression off
SSLCipherSuite EDH+CAMELLIA:EDH+aRSA:EECDH+aRSA+AESGCM:EECDH+aRSA+SHA256:EECDH:+CAMELLIA128:+AES128:+SSLv3:!aNULL:!eNULL:!LOW:!3DES:!MD5:!EXP:!PSK:!DSS:!RC4:!SEED:!IDEA:!ECDSA:kEDH:CAMELLIA128-SHA:AES128-SHA'
The text was updated successfully, but these errors were encountered:
Hi @iXware71 , I'll add it to Apache (and also checl the nginx settings) in the next release, thanks!
Sorry, something went wrong.
Improved Apache SSL settings
6402acf
Addresses #35
Closing this issue given this is fixed in master and will be part of the next release version of Baikal.
master
Thanks again @iXware71 to point it out 👍
ckulka
No branches or pull requests
The apache ssl config is not secure enough. The ssl test at https://ssllabs.com/ssltest only gives an overall rating of "B".
Please check https://bettercrypto.org/#_apache for better apache configuration.
The "header" parameters are not necessary for a better rating, but the parameters SSLProtocol and SSLCipherSuite are important.
Add this in /etc/apache2/sites-available/000-default.conf before line "</VirtualHost>":
SSLProtocol All -SSLv2 -SSLv3 -TLSv1 -TLSv1.1
SSLHonorCipherOrder On
SSLCompression off
SSLCipherSuite EDH+CAMELLIA:EDH+aRSA:EECDH+aRSA+AESGCM:EECDH+aRSA+SHA256:EECDH:+CAMELLIA128:+AES128:+SSLv3:!aNULL:!eNULL:!LOW:!3DES:!MD5:!EXP:!PSK:!DSS:!RC4:!SEED:!IDEA:!ECDSA:kEDH:CAMELLIA128-SHA:AES128-SHA'
The text was updated successfully, but these errors were encountered: