This commit is contained in:
marsal wang
2023-08-15 14:04:34 +08:00
parent f24b5feab2
commit 775dd4bda7
4 changed files with 150 additions and 1 deletions

View File

@ -0,0 +1,12 @@
server {
listen 0.0.0.0:8031;
location /h5/supplier/dispatch {
alias /app/;
try_files $uri $uri/ /h5/supplier/dispatch/index.html;
index index.html;
if ($request_filename ~ .*\.(htm|html)$)
{
add_header Cache-Control no-cache;
}
}
}