computer-playbook/roles/nginx-homepage/templates/homepage.nginx.conf.j2

16 lines
217 B
Django/Jinja

#default
server
{
server_name {{domain}};
{% include 'roles/letsencrypt/templates/ssl_header.j2' %}
charset utf-8;
location /
{
root {{nginx_homepage_root}};
index index.html index.htm;
}
}