我是靠谱客的博主 风趣星月,最近开发中收集的这篇文章主要介绍nginx同一域名同一端口下配置多主机(多项目),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在很多情况下,只有一个域名一个端口,要求使用多个站点

一、定义项目名及网站test1、test2

[root@localhost ~]# mkdir -p /data/nginx/html/test1
[root@localhost ~]# mkdir -p /data/nginx/html/test2
[root@localhost ~]# echo "this is test1" >/data/nginx/html/test1/index.html
[root@localhost ~]# echo "this is test2" >/data/nginx/html/test2/index.html

二、配置nginx.conf

http {
    include       mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  logs/access.log  main;
    sendfile        on;
    #tcp_nopush     on;
    #keepalive_timeout  0;
    keepalive_timeout  65;
    #gzip  on;
    server {
        listen       80;
        server_name  localhost;
        location / {
            root   html;
            index  index.html index.htm;
        }

        location /test1 {
            alias       /data/nginx/html/test1;
            index       index.html;
        }

        location /test2 {
                alias   /data/nginx/html/test2;
                index   index.html;

        }

三、效果

在这里插入图片描述

-----------------------end

最后

以上就是风趣星月为你收集整理的nginx同一域名同一端口下配置多主机(多项目)的全部内容,希望文章能够帮你解决nginx同一域名同一端口下配置多主机(多项目)所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部