20241113-a

This commit is contained in:
unknown
2024-11-13 09:05:45 +08:00
commit 3bcaa20bc4
186 changed files with 100169 additions and 0 deletions

19
docker/nginx/default.conf Normal file
View File

@@ -0,0 +1,19 @@
server {
listen 80;
location ^~ /admin {
alias /etc/nginx/html;
try_files $uri $uri/index.html @admin;
}
location @admin {
rewrite ^.*$ /admin/index.html last;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}