update 更换图标

This commit is contained in:
2023-12-24 21:59:06 +08:00
parent 9592d0c481
commit 8f7349dcbf
33 changed files with 31922 additions and 10925 deletions

15
nginx.conf Normal file
View File

@@ -0,0 +1,15 @@
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}