更改镜像插件为倒序

This commit is contained in:
dxin
2025-12-19 11:43:42 +08:00
parent 480dcd46c3
commit 62a4ced1a6
27 changed files with 595 additions and 5 deletions

View File

@@ -1,4 +1,7 @@
# nginx.conf
user nginx;
worker_processes auto;
events {
worker_connections 1024;
}
@@ -51,6 +54,7 @@ http {
# 静态资源缓存优化
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
root /usr/share/nginx/html;
expires 1y;
add_header Cache-Control "public, immutable";
access_log off;