mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-18 14:34:24 +02:00
22 lines
740 B
Plaintext
22 lines
740 B
Plaintext
server
|
|
{
|
|
server_name {{domain}};
|
|
|
|
{% if applications | is_feature_enabled('oauth2',application_id) %}
|
|
{% include 'roles/web-app-oauth2-proxy/templates/endpoint.conf.j2'%}
|
|
{% endif %}
|
|
|
|
{% include 'roles/srv-web-7-7-inj-compose/templates/global.includes.conf.j2'%}
|
|
|
|
{% if proxy_extra_configuration is defined %}
|
|
{# Additional Domain Specific Configuration #}
|
|
{{ proxy_extra_configuration }}
|
|
{% endif %}
|
|
|
|
{% include 'roles/net-letsencrypt/templates/ssl_header.j2' %}
|
|
|
|
{% for path in syncope_paths.values() %}
|
|
{% set location = web_protocol ~ '://' ~ domains | get_domain(application_id) ~ '/' ~ path ~ '/' %}
|
|
{% include 'roles/srv-proxy-7-4-core/templates/location/proxy_basic.conf.j2'%}
|
|
{% endfor %}
|
|
} |