State after Chapter 1

This commit is contained in:
Tim Schilling
2024-11-19 08:46:20 +01:00
commit f4324b427d
10 changed files with 78 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.html index.htm;
server_name localhost;
location / {
try_files $uri $uri/ =404;
}
}