Mods working, HTTP addon server working

This commit is contained in:
2025-02-15 13:16:24 -05:00
parent 5fb7c08135
commit 615674d5b6
9 changed files with 70 additions and 8 deletions
+3
View File
@@ -0,0 +1,3 @@
FROM nginx:1.27-alpine
EXPOSE 80
COPY nginx.conf /etc/nginx/nginx.conf
+12
View File
@@ -0,0 +1,12 @@
events {}
http {
server {
listen 80;
location / {
root /data;
autoindex on;
}
}
}