mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-02-23 04:49:40 +01:00
21 lines
527 B
Django/Jinja
21 lines
527 B
Django/Jinja
server
|
|
{
|
|
server_name {{domain}};
|
|
|
|
{% if oauth2_proxy_active | bool %}
|
|
{% include 'roles/docker-oauth2-proxy/templates/endpoint.conf.j2'%}
|
|
{% endif %}
|
|
|
|
{% include 'roles/nginx-modifier-all/templates/global.includes.conf.j2'%}
|
|
|
|
{% if nginx_docker_reverse_proxy_extra_configuration is defined %}
|
|
# Additional Domain Specific Configuration
|
|
{{nginx_docker_reverse_proxy_extra_configuration}}
|
|
{% endif %}
|
|
|
|
{% include 'roles/letsencrypt/templates/ssl_header.j2' %}
|
|
|
|
{% include 'proxy_pass.conf.j2' %}
|
|
|
|
}
|