真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

CentOS7.3怎么配置Nginx虛擬主機(jī)-創(chuàng)新互聯(lián)

這篇文章主要介紹CentOS 7.3怎么配置Nginx虛擬主機(jī),文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)公司是專業(yè)的新密網(wǎng)站建設(shè)公司,新密接單;提供成都做網(wǎng)站、成都網(wǎng)站建設(shè),網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行新密網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!

實(shí)驗(yàn)環(huán)境

一臺(tái)最小化安裝的CentOS 7.3虛擬機(jī)

配置基本環(huán)境

1. 安裝nginx

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

2. 建立虛機(jī)主機(jī)的站點(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

CentOS 7.3怎么配置Nginx虛擬主機(jī)

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

setenforce 0
systemctl stop firewalld
systemctl disable firewalld

CentOS 7.3怎么配置Nginx虛擬主機(jī)

配置基于端口的虛擬主機(jī)

1. 編輯nginx配置文件

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

2. 添加以下內(nèi)容

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

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

 location / {
 }
}

CentOS 7.3怎么配置Nginx虛擬主機(jī)

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

systemctl start nginx

4. 在宿主機(jī)訪問兩個(gè)站點(diǎn)

http://192.168.204.135:8081/
http://192.168.204.135:8082/

CentOS 7.3怎么配置Nginx虛擬主機(jī) 

CentOS 7.3怎么配置Nginx虛擬主機(jī)

配置基于域名的虛擬主機(jī)

1. 重新編輯nginx配置文件

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

2. 刪除原內(nèi)容,重新添加以下內(nèi)容

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 / {
 }
}

CentOS 7.3怎么配置Nginx虛擬主機(jī)

3. 重啟 nginx 服務(wù)

systemctl restart nginx

4. 在Windows上修改 hosts 文件

編輯 C:\Windows\System32\drivers\etc\hosts 文件,

添加以下內(nèi)容(根據(jù)實(shí)際情況自己修改)

192.168.204.135 site1.test.com

192.168.204.135 site2.test.com

CentOS 7.3怎么配置Nginx虛擬主機(jī)

5. 在宿主機(jī)訪問兩個(gè)站點(diǎn)

http://site1.test.com/
http://site2.test.com/

CentOS 7.3怎么配置Nginx虛擬主機(jī) 

CentOS 7.3怎么配置Nginx虛擬主機(jī)

配置基于IP的虛擬主機(jī)

1. 在虛擬機(jī)增加兩個(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. 刪除原內(nèi)容,重新添加以下內(nèi)容

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 / {
 }
}

CentOS 7.3怎么配置Nginx虛擬主機(jī)

4. 重啟 nginx 服務(wù)

systemctl restart nginx

5. 在宿主機(jī)訪問兩個(gè)站點(diǎn)

http://192.168.204.151/
http://192.168.204.152/

CentOS 7.3怎么配置Nginx虛擬主機(jī) 

CentOS 7.3怎么配置Nginx虛擬主機(jī)

以上是“CentOS 7.3怎么配置Nginx虛擬主機(jī)”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計(jì)公司行業(yè)資訊頻道!

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


名稱欄目:CentOS7.3怎么配置Nginx虛擬主機(jī)-創(chuàng)新互聯(lián)
URL標(biāo)題:http://weahome.cn/article/cdhsdj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部