computer-playbook/roles/native-nginx-docker-proxy/templates/domain.conf.j2

14 lines
255 B
Plaintext
Raw Normal View History

2020-12-24 14:27:31 +01:00
server
{
server_name {{domain}};
{% if client_max_body_size is defined %}
client_max_body_size {{ client_max_body_size }};
{% endif %}
{% include 'roles/native-letsencrypt/templates/ssl_header.j2' %}
{% include 'proxy_pass.conf.j2' %}
}