我是靠谱客的博主 明亮斑马,最近开发中收集的这篇文章主要介绍Nginx同一域名部署多个项目,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 直接放 nginx.conf 文件吧。 差不多直接看配置文件就能懂如何去配置,具体还是得细说一下。

 #叮叮货滴-管理后台
    server {
        listen       80;
        server_name  admin.ceshi.com;
        location / {
            index  index.html index.htm;
	    proxy_pass   http://110.120.130.140:8888;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
    #叮叮货滴-shipper
    server {
        listen       80;
        server_name  shipper.ceshi.com;
        location / {
            index  index.html index.htm;
	    proxy_pass   http://110.120.130.140:7777;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
    #叮叮货滴-app
    server {
        listen       80;
        server_name  app.ceshi.com;
        location / {
            index  index.html index.htm;
	    proxy_pass   http://110.120.130.140:9999;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
    #叮叮货滴-官网
    server {
        listen       80;
        server_name  www.ceshi.com;
        location / {
            index  index.html index.htm;
	    proxy_pass   http://110.120.130.140:8800;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }

比如我这个项目。四个后台,门户管理,货主管理,司机管理,还有个app管理。他们分别在四个tomcat中运行。

首先先要测试单个程序 在输入 ip+端口的时候 能不能运行。(如果不能运行,也是白配置)

其次在nginx.conf 加 server。 格式如图中的一样。

还有 server_name   我希望您一定要域名解析 域名解析 域名解析。重要的事情说三遍,别域名都不解析,谁能找到你这个地址。

稍等下,我详细介绍下server的具体配置 以及解释

最后

以上就是明亮斑马为你收集整理的Nginx同一域名部署多个项目的全部内容,希望文章能够帮你解决Nginx同一域名部署多个项目所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部