This commit is contained in:
aixianling
2024-09-20 12:02:02 +08:00
commit e6a0613681
615 changed files with 96144 additions and 0 deletions

11
docker/nginx.conf Normal file
View File

@@ -0,0 +1,11 @@
server {
listen 80;
server_name localhost;
location / {
error_page 404 /index.html;
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
}