我是靠谱客的博主 落后冬瓜,最近开发中收集的这篇文章主要介绍用nginx的location配置多个web工程,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在小作坊的实际生产中,由于服务器的紧缺,往往只有一台nginx,一个端口,但又需要我们在nginx里面配置多个web前端工程。

我们就需要用到nginx的location进行代理。

下面是配多个静态工程:

        location / {
            root   /app/nginx/frontier/dist;
            index  index.html ;
            add_header X-Frame-Options SAMEORIGIN ;
        }

        location /gongchengA/ {
            alias   /app/nginx/frontier/gongchengA/;
            index  index.html ;
            add_header X-Frame-Options SAMEORIGIN ;
        }
        location /gongchengB/ {
            alias   /app/nginx/frontier/gongchengB/;
            index  index.html ;
            add_header X-Frame-Options SAMEORIGIN ;
        }

 

location也可以配置多个代理

        location / {
            root   /app/nginx/frontier/dist;
            index  index.html ;
            add_header X-Frame-Options SAMEORIGIN ;
        }

        location /gongchengA/ {
            alias   /app/nginx/frontier/gongchengA/;
            index  index.html ;
            add_header X-Frame-Options SAMEORIGIN ;
        }
        location /gongchengB/ {
            alias   /app/nginx/frontier/gongchengB/;
            index  index.html ;
            add_header X-Frame-Options SAMEORIGIN ;
        }

 

最后

以上就是落后冬瓜为你收集整理的用nginx的location配置多个web工程的全部内容,希望文章能够帮你解决用nginx的location配置多个web工程所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部