The rest of the owl

This commit is contained in:
2026-02-28 12:13:24 -06:00
parent 54222db887
commit fdba0fdf8c
60 changed files with 1524 additions and 377 deletions

19
nginx/default.conf Normal file
View File

@@ -0,0 +1,19 @@
server {
listen 80;
server_name localhost;
absolute_redirect off;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}