Merge pull request 'fix: rm filter from nginx config' (#6) from fix_rm_filter_plugin into main

Reviewed-on: #6
pull/7/head
thiuda 2022-05-08 22:12:30 +02:00
commit bd9e1ae57f
1 changed files with 3 additions and 5 deletions

View File

@ -17,10 +17,8 @@ server {
ssl_prefer_server_ciphers on;
ssl_dhparam {{ ssl_dir }}/dhparams.pem;
ssl_ecdh_curve secp384r1;
ssl_certificate {{ certs_dir }}/{{ domain | get_cert_domain }}/cert.pem;
ssl_certificate_key {{ certs_dir }}/{{ domain | get_cert_domain }}/key.pem;
ssl_certificate {{ certs_dir }}/{{ domain | get_cert_domain }}/cert.pem;
ssl_certificate_key {{ certs_dir }}/{{ domain | get_cert_domain }}/key.pem;
ssl_certificate {{ certs_dir }}/{{ domain }}/cert.pem;
ssl_certificate_key {{ certs_dir }}/{{ domain }}/key.pem;
##
# OCSP Stapling
@ -28,7 +26,7 @@ server {
ssl_stapling on;
ssl_stapling_verify on;
resolver {{ dns_resolvers }} valid=300s;
ssl_trusted_certificate {{ certs_dir }}/{{ domain | get_cert_domain }}/cert.pem;
ssl_trusted_certificate {{ certs_dir }}/{{ domain }}/cert.pem;
location / {
proxy_set_header Host $http_host;