getting ready to pull

This commit is contained in:
Me
2022-08-03 18:56:34 +02:00
parent 16af16084b
commit fef26aee5b
7 changed files with 9 additions and 1 deletions

View File

@@ -10,8 +10,16 @@ server {
# client_body_limit 400;
index index.html; # this is another comment
root ./www/;
root /website;
allow_methods GET;
# ok in theory if one were to go to /test they would get the index in www
# as opposed to the one in /website...
location /test {
root /www;
}
}