Mods working, HTTP addon server working
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
FROM nginx:1.27-alpine
|
||||
EXPOSE 80
|
||||
COPY nginx.conf /etc/nginx/nginx.conf
|
||||
@@ -0,0 +1,12 @@
|
||||
|
||||
events {}
|
||||
http {
|
||||
server {
|
||||
listen 80;
|
||||
|
||||
location / {
|
||||
root /data;
|
||||
autoindex on;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user