18 lines
281 B
Plaintext
Raw Permalink Normal View History

2025-03-20 13:37:24 +08:00
server {
listen 80;
2025-04-20 22:46:41 +08:00
server_name cloud-admin.Tmerclub.com;
2025-03-20 13:37:24 +08:00
location / {
root /usr/share/nginx/html/admin;
}
error_page 404 /404.html;
location = /404-light.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}