mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
16 lines
219 B
Django/Jinja
16 lines
219 B
Django/Jinja
#default
|
|
server
|
|
{
|
|
server_name {{domain}};
|
|
|
|
{% include 'roles/letsencrypt/templates/ssl_header.j2' %}
|
|
|
|
charset utf-8;
|
|
|
|
location /
|
|
{
|
|
root /usr/share/nginx/homepage;
|
|
index index.html index.htm;
|
|
}
|
|
}
|