tlu/salt/states/nginx/files/www.conf
2021-10-22 16:19:31 +02:00

10 lines
200 B
Plaintext

server {
listen 80 default;
server_name www.{{ pillar['network']['domain'] }};
location /{
root /srv/www/htdocs/;
index index.html;
autoindex on;
}
}