You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
377 B
23 lines
377 B
3 months ago
|
server {
|
||
|
listen 80;
|
||
|
server_name mini-admin.mall4j.com;
|
||
|
|
||
|
gzip on;
|
||
|
gzip_static on;
|
||
|
|
||
|
location / {
|
||
|
try_files $uri $uri/ /;
|
||
|
root /usr/share/nginx/html/dist;
|
||
|
index index.html;
|
||
|
}
|
||
|
|
||
|
error_page 404 /404.html;
|
||
|
location = /404-light.html {
|
||
|
}
|
||
|
|
||
|
error_page 500 502 503 504 /50x.html;
|
||
|
location = /50x.html {
|
||
|
}
|
||
|
}
|
||
|
|