acme/certificate: Renamed certificate_location to fullchain_location

dehydrated
Felix Stupp 4 years ago
parent 55451f321a
commit 0f57d44bb1
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -3,7 +3,7 @@
# domain
acme_certificate_prefix: "{{ acme_certificates_directory }}/{{ domain }}"
acme_certificate_location: "{{ acme_certificate_prefix }}.crt"
acme_fullchain_location: "{{ acme_certificate_prefix }}.crt"
acme_key_location: "{{ acme_certificate_prefix }}.key"
reload_command: "systemctl reload {{ global_nginx_service_name }}"

@ -25,7 +25,7 @@
--config-home {{ acme_configuration_directory | quote }}
--domain {{ domain | quote }}
--key-file {{ acme_key_location | quote }}
--fullchain-file {{ acme_certificate_location | quote }}
--fullchain-file {{ acme_fullchain_location | quote }}
--reloadcmd {{ reload_command | quote }}
args:
chdir: "{{ acme_installation_directory }}"

@ -4,7 +4,7 @@ server {
server_name {{ domain }};
ssl on;
ssl_certificate {{ acme_certificate_location }};
ssl_certificate {{ acme_fullchain_location }};
ssl_certificate_key {{ acme_key_location }};
include {{ nginx_snippets_directory }}/https;

@ -8,7 +8,7 @@ server {
proxy_pass_error_message on;
starttls on;
ssl_certificate {{ acme_certificate_location }};
ssl_certificate {{ acme_fullchain_location }};
ssl_certificate_key {{ acme_key_location }};
include {{ nginx_snippets_directory }}/ssl;

@ -4,7 +4,7 @@ server {
server_name {{ domain }};
ssl on;
ssl_certificate {{ acme_certificate_location }};
ssl_certificate {{ acme_fullchain_location }};
ssl_certificate_key {{ acme_key_location }};
include {{ nginx_snippets_directory }}/https;

@ -11,5 +11,5 @@ server_name_directives: |
server_name {{ domain }};
certificates_directives: |
ssl_certificate {{ acme_certificate_location }};
ssl_certificate {{ acme_fullchain_location }};
ssl_certificate_key {{ acme_key_location }};

@ -4,7 +4,7 @@ server {
server_name {{ domain }};
ssl on;
ssl_certificate {{ acme_certificate_location }};
ssl_certificate {{ acme_fullchain_location }};
ssl_certificate_key {{ acme_key_location }};
index index.html index.htm;

Loading…
Cancel
Save