added x-forward-ip support
This commit is contained in:
parent
0e8c531d0b
commit
b0fe6bb0ee
5 changed files with 16 additions and 2 deletions
11
templates/ssl_files.conf.j2
Normal file
11
templates/ssl_files.conf.j2
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{% if nginx.serverpki %}
|
||||
# certs sent to the client in SERVER HELLO are concatenated in ssl_certificate
|
||||
ssl_certificate /etc/ssl/{{ inventory_hostname }}.crt;
|
||||
ssl_certificate_key /etc/ssl/private/{{ inventory_hostname }}.key;
|
||||
{% endif %}
|
||||
|
||||
# verify chain of trust of OCSP response using Root CA and Intermediate certs
|
||||
ssl_trusted_certificate /etc/ssl/certs/ca-certificates.crt;
|
||||
|
||||
# Diffie-Hellman parameter for DHE ciphersuites, recommended 2048 bits
|
||||
ssl_dhparam /etc/ssl/dhparams.pem;
|
||||
Loading…
Add table
Add a link
Reference in a new issue