Change certificate paths in nginx.conf
This commit is contained in:
parent
cd7b9918a1
commit
2412c87fbb
|
@ -27,7 +27,8 @@ http {
|
||||||
|
|
||||||
#gzip on;
|
#gzip on;
|
||||||
resolver 127.0.0.11 valid=30;
|
resolver 127.0.0.11 valid=30;
|
||||||
ssl_certificate /etc/nginx/{{ base_domain }}.crt;
|
{% if self_signed == true %}
|
||||||
ssl_certificate_key /etc/nginx/{{ base_domain }}.key;
|
include /etc/nginx/snippets/self-signed.conf;
|
||||||
|
{% endif %}
|
||||||
include /etc/nginx/conf.d/*.conf;
|
include /etc/nginx/conf.d/*.conf;
|
||||||
}
|
}
|
|
@ -0,0 +1,2 @@
|
||||||
|
ssl_certificate /etc/ssl/{{ base_domain }}.crt;
|
||||||
|
ssl_certificate_key /etc/ssl/{{ base_domain }}.key;
|
Loading…
Reference in New Issue