mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 15:01:05 +01:00
14 lines
255 B
Django/Jinja
14 lines
255 B
Django/Jinja
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' %}
|
|
|
|
}
|