tmerclub-slipper/nginx.conf

19 lines
321 B
Nginx Configuration File
Raw Normal View History

2025-03-20 13:46:26 +08:00
server {
listen 80;
server_name cloud-supplier.mall4j.com;
location / {
try_files $uri $uri/ /;
root /usr/share/nginx/html/dist;
}
error_page 404 /404.html;
location = /404-light.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}