码迷,mamicode.com
首页 > 其他好文 > 详细

nginx代理前端项目

时间:2019-10-28 12:56:16      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:注意   span   项目   try_files   表示   bsp   file   uri   路由   

注意

1.只能有一个root, 其他用alias

2.try_files是在找不到路由的时候跳转到的页面,跳转到index.html表示将路由交给前端页面(框架)处理

 

location / {

            root   /home/hadoop/twd-ui;

            index  index.html index.htm;

         try_files $uri $uri/ /index.html;

        }

location /jr {

            alias   /home/hadoop/twd-ui-yuxi-jd/;

            index  index.html index.htm;

            try_files $uri $uri/ /jr/index.html;

         }

 

 

nginx代理前端项目

标签:注意   span   项目   try_files   表示   bsp   file   uri   路由   

原文地址:https://www.cnblogs.com/yoyogis/p/11751362.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!