You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
308 B
Plaintext

server {
listen {{ port }};
protocol {{ protocol }};
proxy_pass {{ backend }};
server_name {{ domain }};
proxy_pass_error_message on;
starttls on;
ssl_certificate {{ acme_fullchain_location }};
ssl_certificate_key {{ acme_key_location }};
include {{ nginx_snippets_directory }}/ssl;
}