data-collector fixed

This commit is contained in:
2025-06-21 08:46:45 +08:00
parent 2e6603e29a
commit b52a9befee
28 changed files with 4097 additions and 57 deletions

View File

@@ -0,0 +1,14 @@
server {
listen 443 ssl;
server_name a1.shenjianl.cn;
ssl_certificate /usr/local/nginx/conf/ssl_certificate/a1/a1.shenjianl.cn_bundle.pem;
ssl_certificate_key /usr/local/nginx/conf/ssl_certificate/a1/a1.shenjianl.cn.key;
location / {
root /data/a1;
index index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}