This commit is contained in:
jonas
2021-10-22 16:19:31 +02:00
parent 2d44511d66
commit bc122be13e
4 changed files with 18 additions and 10 deletions

View File

@@ -1,4 +0,0 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore

View File

@@ -0,0 +1,9 @@
server {
listen 80 default;
server_name www.{{ pillar['network']['domain'] }};
location /{
root /srv/www/htdocs/;
index index.html;
autoindex on;
}
}