美文网首页
Nginx同一文件夹部署微前端

Nginx同一文件夹部署微前端

作者: 坑的心都碎了 | 来源:发表于2021-07-20 18:04 被阅读0次
server {
  listen       8080;
  server_name  localhost;


  location / {
    root   html;
    index  index.html index.htm;
    try_files $uri $uri/ /index.html;
  }


  location /app1 {
    root   html;
    index  index.html index.htm;
    try_files $uri $uri/ /app1/index.html;
  }


  location /app2 {
    root   html;
    index  index.html index.htm;
    try_files $uri $uri/ /app2/index.html;
  }
}

相关文章

网友评论

      本文标题:Nginx同一文件夹部署微前端

      本文链接:https://www.haomeiwen.com/subject/tzsrmltx.html