WunderTools
WunderTools copied to clipboard
Question: How can I add custom nginx directives to sslterminator?
I'm using a client provided https certificate for a project. This certificate is encrypted in the repository with ansible-vault.
I have succesfully added it into the project and it works just fine except the ssl_stapling part:
$ nginx -t
nginx: [warn] "ssl_stapling" ignored, issuer certificate not found for certificate "/etc/ssl/certs/production.crt"
...
In order to fix this and enable ssl_stapling for this certificate I would need to add one more line into the same sslterminator:
ssl_trusted_certificate /etc/ssl/certs/additional-ca.crt;
source: http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_stapling_verify
Currently not possible. Changing this into feature request.