点击下载http://myapp-host/DLFile/UploadFile/ip.PNG
https://www.tabnine.com/code/Javascript/classes/react-router/StaticRouter
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/myapp/;
location / {
try_files $uri $uri/ /index.html;
client_max_body_size 8M;
client_body_buffer_size 8M;
}
location /gateway {
proxy_pass http://127.0.0.1:9001/gateway;
client_max_body_size 8M;
client_body_buffer_size 8M;
}
location /DLFile {
root /var/www/html/;
client_max_body_size 8M;
client_body_buffer_size 8M;
}
{
path: "*",
auth: true,
title: "myapp",
component: lazy(() => import("@/page/commonPage/notFound")),
showSider: false,
},
搜索
复制