国产欧美日韩第一页|日本一二三不卡视频|在线精品小视频,亚洲第一免费播放区,metcn人体亚洲一区,亚洲精品午夜视频

CentOS 7.3配置Nginx虛擬主機

2019-02-22 10:21:30 8810

配置基本環(huán)境

1. 安裝nginx

yum install -y epel-*
yum isntall -y nginx vim

2. 建立虛機主機的站點(diǎn)根目錄

mkdir /var/wwwroot
mkdir /var/wwwroot/site1
mkdir /var/wwwroot/site2
echo -e "site1" >> /var/wwwroot/site1/index.html
echo -e "site2" >> /var/wwwroot/site2/index.html

3. 關(guān)閉CentOS的防火墻

setenforce 0
systemctl stop firewalld
systemctl disable firewalld

配置基于端口的虛擬主機

1. 編輯nginx配置文件

vim /etc/nginx/conf.d/vhosts.conf

2. 添加以下內容

server {
    listen 8081;
    root /var/wwwroot/site1;
    index index.html;

    location / {
    }
}
server {
  listen 8082;
  root /var/wwwroot/site2;
  index index.html;

  location / {
  }
}

3. 啟動(dòng)nginx服務(wù)

systemctl start nginx

4. 在宿主機訪(fǎng)問(wèn)兩個(gè)站點(diǎn)

http://www.tjdsmy.cn:8081/
http://www.tjdsmy.cn:8082/

配置基于域名的虛擬主機

1. 重新編輯nginx配置文件

vim /etc/nginx/conf.d/vhosts.conf

2. 刪除原內容,重新添加以下內容

server {
    listen 80;
    server_name site1.test.com;
    root /var/wwwroot/site1;
    index index.html;

    location / {
    }
}
server {
  listen 80;
  server_name site2.test.com;
  root /var/wwwroot/site2;
  index index.html;

  location / {
  }
}

3. 重啟nginx服務(wù)

systemctl restart nginx

4. 在Windows上修改hosts文件

編輯C:\Windows\System32\drivers\etc\hosts文件,
添加以下內容(根據實(shí)際情況自己修改)

192.168.204.135   site1.test.com  
192.168.204.135   site2.test.com

5. 在宿主機訪(fǎng)問(wèn)兩個(gè)站點(diǎn)

http://www.tjdsmy.cn/
http://www.tjdsmy.cn/


配置基于IP的虛擬主機

1. 在虛擬機增加兩個(gè)IP地址

ifconfig ens33:1 192.168.204.151
ifconfig ens33:2 192.168.204.152

2. 重新編輯nginx配置文件

vim /etc/nginx/conf.d/vhosts.conf

3. 刪除原內容,重新添加以下內容

server {
    listen 192.168.204.151:80;
    root /var/wwwroot/site1;
    index index.html;

    location / {
    }
}
server {
  listen 192.168.204.152:80;
  root /var/wwwroot/site2;
  index index.html;

  location / {
  }
}

4. 重啟nginx服務(wù)

systemctl restart nginx

5. 在宿主機訪(fǎng)問(wèn)兩個(gè)站點(diǎn)

http://www.tjdsmy.cn/
http://www.tjdsmy.cn/


提交成功!非常感謝您的反饋,我們會(huì )繼續努力做到更好!

這條文檔是否有幫助解決問(wèn)題?

非常抱歉未能幫助到您。為了給您提供更好的服務(wù),我們很需要您進(jìn)一步的反饋信息:

在文檔使用中是否遇到以下問(wèn)題:
-->