亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

CentOS怎么配置Nginx虛擬主機

發布時間:2022-04-12 15:37:46 來源:億速云 閱讀:238 作者:iii 欄目:編程語言

這篇文章主要講解了“CentOS怎么配置Nginx虛擬主機”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“CentOS怎么配置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

CentOS怎么配置Nginx虛擬主機

3. 關閉centos的防火墻

setenforce 0
systemctl stop firewalld
systemctl disable firewalld

CentOS怎么配置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 / {
 }
}

CentOS怎么配置Nginx虛擬主機

3. 啟動 nginx 服務

systemctl start nginx

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

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

CentOS怎么配置Nginx虛擬主機 

CentOS怎么配置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 / {
 }
}

CentOS怎么配置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

CentOS怎么配置Nginx虛擬主機

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

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

CentOS怎么配置Nginx虛擬主機 

CentOS怎么配置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 / {
 }
}

CentOS怎么配置Nginx虛擬主機

4. 重啟 nginx 服務

systemctl restart nginx

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

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

CentOS怎么配置Nginx虛擬主機 

CentOS怎么配置Nginx虛擬主機

感謝各位的閱讀,以上就是“CentOS怎么配置Nginx虛擬主機”的內容了,經過本文的學習后,相信大家對CentOS怎么配置Nginx虛擬主機這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

凤庆县| 白山市| 枣庄市| 泗阳县| 玉环县| 绍兴市| 晋州市| 永寿县| 汉寿县| 拜泉县| 石泉县| 鄢陵县| 抚宁县| 沙坪坝区| 手游| 彝良县| 荃湾区| 娄底市| 留坝县| 准格尔旗| 荥经县| 彩票| 环江| 明光市| 肥城市| 梁山县| 合肥市| 沂南县| 曲阜市| 封丘县| 木兰县| 安岳县| 崇仁县| 黎城县| 云龙县| 昭觉县| 余干县| 澳门| 辽宁省| 睢宁县| 吉林市|