Initial commit: Nginx Autoindex文件列表系统

This commit is contained in:
autoindex
2025-12-03 04:15:17 +00:00
commit 309dd0378a
9 changed files with 995 additions and 0 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
version: '3.8'
services:
fileserver:
image: nginx-autoindex:latest
container_name: nginx-autoindex
ports:
- "8080:80"
volumes:
# 挂载你的文件目录到容器
- ./data:/var/www/files
restart: unless-stopped
environment:
- TZ=Asia/Shanghai