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

16 lines
226 B
Plaintext
Raw Normal View History

2021-01-03 00:29:24 +01:00
#default
server
{
server_name {{domain}};
2023-08-22 23:56:56 +02:00
{% include 'roles/native-letsencrypt/templates/ssl_header.j2' %}
2021-01-03 00:29:24 +01:00
charset utf-8;
2021-01-03 00:29:24 +01:00
location /
{
root /usr/share/nginx/homepage;
index index.html index.htm;
}
}