enclosed things to be updated by script in angle brackets
This commit is contained in:
parent
a39f8f8507
commit
4baa3a1704
@ -20,7 +20,7 @@ ssl_prefer_server_ciphers on;
|
||||
ssl_early_data on;
|
||||
|
||||
# Diffie-Hellman parameter for DHE cipher suites, using 4096 bits
|
||||
ssl_dhparam /path/to/your_dhparam.pem;
|
||||
ssl_dhparam <path/to/your_dhparam.pem>;
|
||||
|
||||
# HSTS -- please understand the implications of HSTS before enabling it
|
||||
# do NOT implement while still testing configurations or site parameters
|
||||
@ -33,6 +33,6 @@ ssl_stapling on;
|
||||
ssl_stapling_verify on;
|
||||
|
||||
# verify chain of trust of OCSP response using Root CA and Intermediate certs
|
||||
ssl_trusted_certificate /path/to/your_CA_bundle.crt;
|
||||
ssl_trusted_certificate <path/to/your_CA_bundle.crt>;
|
||||
|
||||
# resolver should be specified in nginx.conf or in networking configuration
|
||||
|
@ -3,4 +3,5 @@
|
||||
#######
|
||||
|
||||
server_name
|
||||
<server name(s)>
|
||||
;
|
||||
|
@ -2,5 +2,5 @@
|
||||
### NGINX configuration - location of SSL certificates
|
||||
#######
|
||||
|
||||
ssl_certificate /path/to/your_ssl_certificate_fullchain;
|
||||
ssl_certificate_key /path/to/your_certificate_private_key.key;
|
||||
ssl_certificate <path/to/your_ssl_certificate_fullchain>;
|
||||
ssl_certificate_key <path/to/your_certificate_private_key.key>;
|
||||
|
Loading…
Reference in New Issue
Block a user