中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CentOS7.3怎么配置Nginx虛擬主機

發布時間:2022-04-25 15:43:33 來源:億速云 閱讀:168 作者:iii 欄目:大數據

本文小編為大家詳細介紹“CentOS7.3怎么配置Nginx虛擬主機”,內容詳細,步驟清晰,細節處理妥當,希望這篇“CentOS7.3怎么配置Nginx虛擬主機”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

實驗環境

一臺最小化安裝的centos 7.3虛擬機

配置基本環境

1. 安裝nginx

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

2. 建立虛機主機的站點根目錄

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

CentOS7.3怎么配置Nginx虛擬主機

3. 關閉centos的防火墻

setenforce 0
systemctl stop firewalld
systemctl disable firewalld

CentOS7.3怎么配置Nginx虛擬主機

配置基于端口的虛擬主機

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

CentOS7.3怎么配置Nginx虛擬主機

3. 啟動 nginx 服務

systemctl start nginx

4. 在宿主機訪問兩個站點

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

CentOS7.3怎么配置Nginx虛擬主機 

CentOS7.3怎么配置Nginx虛擬主機

配置基于域名的虛擬主機

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

CentOS7.3怎么配置Nginx虛擬主機

3. 重啟 nginx 服務

systemctl restart nginx

4. 在windows上修改 hosts 文件

編輯 c:\windows\system32\drivers\etc\hosts 文件,

添加以下內容(根據實際情況自己修改)

192.168.204.135 site1.test.com

192.168.204.135 site2.test.com

CentOS7.3怎么配置Nginx虛擬主機

5. 在宿主機訪問兩個站點

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

CentOS7.3怎么配置Nginx虛擬主機 

CentOS7.3怎么配置Nginx虛擬主機

配置基于ip的虛擬主機

1. 在虛擬機增加兩個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 / {
 }
}

CentOS7.3怎么配置Nginx虛擬主機

4. 重啟 nginx 服務

systemctl restart nginx

5. 在宿主機訪問兩個站點

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

CentOS7.3怎么配置Nginx虛擬主機 

CentOS7.3怎么配置Nginx虛擬主機

讀到這里,這篇“CentOS7.3怎么配置Nginx虛擬主機”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

寿光市| 筠连县| 汾阳市| 灌阳县| 陆良县| 武定县| 新乡县| 巢湖市| 岳普湖县| 榆树市| 林西县| 朔州市| 拜城县| 社旗县| 灌南县| 昌图县| 高碑店市| 遂宁市| 新民市| 西吉县| 崇仁县| 湘西| 兖州市| 普定县| 襄汾县| 铜鼓县| 汨罗市| 剑河县| 成都市| 德阳市| 栾川县| 三门县| 孟津县| 岢岚县| 临泽县| 曲水县| 名山县| 浦东新区| 灵寿县| 陇川县| 娄烦县|