Apache配置虛擬主機的三種方法(基於IP、端口、域名)


1 Apache虛擬主機的實現方式有3種。

  • 基於IP的虛擬主機
  • 基於端口的虛擬主機
  • 基於域名的虛擬主機

2.1 啟用虛擬主機的准備工作

2.1.1安裝httpd

[root@mail httpd]# yum install httpd -y

2.1.2禁用默認的主機模式

[root@mail httpd]# vim /etc/httpd/conf/httpd.conf
注釋下面這行內容
#DocumentRoot "/var/www/html"

2.2基於IP的虛擬主機配置

2.2.1為主機添加多個IP

復制代碼
[root@localhost conf.d]# ip addr show dev eth0            #查看原有IP
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether 00:0c:29:77:77:7d brd ff:ff:ff:ff:ff:ff
    inet 192.168.137.200/24 brd 192.168.137.255 scope global eth0
    inet6 fe80::20c:29ff:fe77:777d/64 scope link
       valid_lft forever preferred_lft forever
[root@localhost conf.d]# ip addr add 192.168.137.201/24 dev eth0 #添加一個IP
[root@localhost conf.d]# ip addr show dev eth0 #查看添加后的IP信息, 此時有2個IP地址了。 200,201
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether 00:0c:29:77:77:7d brd ff:ff:ff:ff:ff:ff
    inet 192.168.137.200/24 brd 192.168.137.255 scope global eth0
    inet 192.168.137.201/24 scope global secondary eth0
    inet6 fe80::20c:29ff:fe77:777d/64 scope link
       valid_lft forever preferred_lft forever

復制代碼

2.2.2添加虛擬主機配置文件

復制代碼
[root@mail conf.d]# cd /etc/httpd/conf.d/      #進入配置目錄
[root@mail conf.d]# vim virtualhost.conf       #創建一個配置文件, 編輯內容如下
[root@mail conf.d]# cat virtualhost.conf       #查看並檢查配置文件
<VirtualHost 192.168.137.200:80>
  DocumentRoot "/var/www/test200"
  ServerName    www.test200.com
</VirtualHost>

<VirtualHost 192.168.137.201:80>
  DocumentRoot "/var/www/test201"
  ServerName    www.test201.com
</VirtualHost>
復制代碼
[root@mail conf.d]# cd /var/www            #切換目錄
[root@mail www]# mkdir test200 test201    #創建目錄
[root@mail www]# echo test200 >>./test200/index.html #創建IP為200的主頁
[root@mail www]# echo test201 >>./test201/index.html #創建IP為200的主頁

2.2.3測試

復制代碼
[root@localhost www]#  service httpd restart
Stopping httpd:                                            [  OK  ]
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName
                                                           [  OK  ]
我們這里使用elinks進行測試, 當然用瀏覽器測試是一樣的 [root@localhost conf]# elinks -source 192.168.137.200 test200 [root@localhost conf]# elinks -source 192.168.137.201 test201
復制代碼

2.3基於端口的虛擬主機配置

2.3.1在主配置文件添加監聽端口

[root@localhost conf]# vim /etc/httpd/conf/httpd.conf 
在原有行Listen 80行的基礎上, 在添加一行
Listen 8080 

2.3.2添加8080的端口虛擬配置

復制代碼
[root@localhost conf.d]# cat virtualhost.conf 
<VirtualHost 192.168.137.200:80>
  DocumentRoot "/var/www/test200"
  ServerName    www.test200.com
</VirtualHost>

<VirtualHost 192.168.137.201:80>
  DocumentRoot "/var/www/test201"
  ServerName    www.test201.com
</VirtualHost>
#下面的內容是在上面的配置的基礎上添加的。
<VirtualHost 192.168.137.201:8080>
  DocumentRoot "/var/www/test201-8080"
  ServerName    www.test201-8080.com
</VirtualHost>
復制代碼
[root@localhost conf.d]# cd /var/www/           #切換目錄
[root@localhost www]# mkdir test201-8080        #創建目錄
[root@localhost www]# echo "test201-8080" >>./test201-8080/index.html       #創建主頁

2.3.2測試

復制代碼
[root@localhost www]#  service httpd restart
Stopping httpd:                                            [  OK  ]
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName
                                                           [  OK  ]
[root@localhost conf]# elinks -source 192.168.137.201:80
test201
[root@localhost conf]# elinks -source 192.168.137.201
test201
[root@localhost conf]# elinks -source 192.168.137.201:8080
test201-8080
復制代碼

2.4基於域名的虛擬主機配置

2.4.1 添加域名的虛擬主機配置

復制代碼
[root@localhost conf.d]# vim virtualhost.conf      #編輯虛擬主機配置文件
[root@localhost conf.d]# cat virtualhost.conf      #內容如下, 紅色部分是在上面的基礎上添加的
NameVirtualHost 192.168.137.200:80 
<VirtualHost 192.168.137.200:80>
  DocumentRoot "/var/www/test200"
  ServerName    www.test200.com
</VirtualHost>

<VirtualHost 192.168.137.200:80>
  DocumentRoot "/var/www/test200net"
  ServerName    www.test200.net
</VirtualHost>

<VirtualHost 192.168.137.201:80>
  DocumentRoot "/var/www/test201"
  ServerName    www.test201.com
</VirtualHost>

<VirtualHost 192.168.137.201:8080>
  DocumentRoot "/var/www/test2018080"
  ServerName    www.test2018080.com
</VirtualHost>
[root@localhost conf.d]# !ser
service httpd restart
Stopping httpd:                                            [  OK  ]
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName
                                                           [  OK  ]
復制代碼
[root@localhost conf.d]# cd /var/www            #切換目錄
[root@localhost www]# mkdir test200net          #創建目錄
[root@localhost www]# echo "test200net" >>./test200net/index.html  #創建主頁

2.4.2 測試

2.4.2.1 添加域名解析

這里我們沒有提供dns去解析,簡單的使用hosts文件區解析就可以了。

復制代碼
[root@localhost www]# vim /etc/hosts      編輯hosts文件, 添加兩行
[root@localhost www]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

192.168.137.200 www.test200.com
192.168.137.200 www.test200.net
復制代碼

接下來就可以測試了

[root@localhost www]# elinks -source http://www.test200.com       #測試.com域
test200
[root@localhost www]# elinks -source http://www.test200.net       #測試.net域
test200net


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM