mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 02:33:10 +01:00
14 lines
452 B
Django/Jinja
14 lines
452 B
Django/Jinja
server {
|
|
server_name {{domain}};
|
|
{% include 'roles/letsencrypt/templates/ssl_header.j2' %}
|
|
|
|
# For the federation port
|
|
listen 8448 ssl http2 default_server;
|
|
listen [::]:8448 ssl http2 default_server;
|
|
|
|
{% if nginx_matomo_tracking | bool %}
|
|
{% include 'roles/nginx-matomo-tracking/templates/matomo-tracking.conf.j2' %}
|
|
{% endif %}
|
|
|
|
{% include 'roles/nginx-docker-reverse-proxy/templates/proxy_pass.conf.j2' %}
|
|
} |