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

16 lines
233 B
Plaintext
Raw Normal View History

2021-01-03 00:29:24 +01:00
#default
server
{
server_name {{domain}};
2023-04-18 15:41:14 +02:00
{% include 'roles/server_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;
}
}