initial commit

This commit is contained in:
wes
2025-05-29 11:07:25 -04:00
parent 0e97054273
commit aa6719663a
10 changed files with 7694 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# ./custom-nginx.conf (on your host)
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html; # Path INSIDE the container where site files will be
index index.html;
location / {
try_files $uri $uri.html $uri/ =404;
}
}