mirror of https://github.com/OpenVidu/openvidu.git
15 lines
541 B
Plaintext
15 lines
541 B
Plaintext
# SSL Config
|
|
ssl_certificate /etc/letsencrypt/live/{domain_name}/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/{domain_name}/privkey.pem;
|
|
ssl_trusted_certificate /etc/letsencrypt/live/{domain_name}/fullchain.pem;
|
|
|
|
ssl_session_cache shared:SSL:50m;
|
|
ssl_session_timeout 5m;
|
|
ssl_stapling on;
|
|
ssl_stapling_verify on;
|
|
|
|
ssl_protocols {ssl_protocols};
|
|
ssl_ciphers "{ssl_ciphers}";
|
|
ssl_prefer_server_ciphers off;
|
|
|
|
add_header Strict-Transport-Security "{add_header_hsts}" always; |