Originally created by @lumag on GitHub (Nov 13, 2016).
According to mod_ssl documentation it is possible to instruct Apache2 to use custom DH parameters or EC curve by appending that data to first certificate specified by SSLCertificateFile. Please add support for adding such data. Thanks!
Originally created by @lumag on GitHub (Nov 13, 2016).
According to [mod_ssl documentation](https://httpd.apache.org/docs/2.4/mod/mod_ssl.html#sslcertificatefile) it is possible to instruct Apache2 to use custom DH parameters or EC curve by appending that data to first certificate specified by `SSLCertificateFile`. Please add support for adding such data. Thanks!
Why not use the dedicated Apache directives for doing that?
You can specify the curve to use for ECDH via: SSLOpenSSLConfCmd ECDHParameters [curve-name]
and specify the parameters for DH via: SSLOpenSSLConfCmd DHParameters /path/to/dhparams.pem
@leonklingele commented on GitHub (Nov 13, 2016):
Why not use the dedicated Apache directives for doing that?
You can specify the curve to use for ECDH via: `SSLOpenSSLConfCmd ECDHParameters [curve-name]`
and specify the parameters for DH via: `SSLOpenSSLConfCmd DHParameters /path/to/dhparams.pem`
This is already possible using the deploy_cert hook. Just append what you need to the cert file before you deploy it to apache.
@welwood08 commented on GitHub (Nov 16, 2016):
This is already possible using the deploy_cert hook. Just append what you need to the cert file before you deploy it to apache.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @lumag on GitHub (Nov 13, 2016).
According to mod_ssl documentation it is possible to instruct Apache2 to use custom DH parameters or EC curve by appending that data to first certificate specified by
SSLCertificateFile. Please add support for adding such data. Thanks!@leonklingele commented on GitHub (Nov 13, 2016):
Why not use the dedicated Apache directives for doing that?
You can specify the curve to use for ECDH via:
SSLOpenSSLConfCmd ECDHParameters [curve-name]and specify the parameters for DH via:
SSLOpenSSLConfCmd DHParameters /path/to/dhparams.pem@lumag commented on GitHub (Nov 13, 2016):
This directive is not available with OpenSSL < 1.0.2 (and that is not the case e.g. for Debian Jessie).
@welwood08 commented on GitHub (Nov 16, 2016):
This is already possible using the deploy_cert hook. Just append what you need to the cert file before you deploy it to apache.