computer-playbook/roles/server_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}};
{% include 'roles/native-letsencrypt/templates/ssl_header.j2' %}
charset utf-8;
2021-01-03 00:29:24 +01:00
location /
{
root /usr/share/nginx/homepage;
index index.html index.htm;
}
}