apache中配置多個IP對應多個網站
1、首先 編輯vi httpd.conf
[@more@]新增多個ListenListen 222.191.116.130:8080
listen 222.191.116.137:8080
註釋掉以下資訊:
#ServerAdmin
#DocumentRoot "/usr/local/apache/htdocs/newwt"
去掉以下注釋:
# Virtual hosts
# Include conf/extra/httpd-vhosts.conf
——〉
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
2、編輯/extra/ httpd-vhosts.conf
修改後內容如下:
NameVirtualHost 222.191.116.130:8080
NameVirtualHost 222.191.116.137:8080
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any
#
ServerAdmin
DocumentRoot /usr/local/apache/htdocs/dxs
ServerName dummy-host.example.com
ServerAlias
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
ServerAdmin
DocumentRoot /usr/local/apache/htdocs/newwt
ServerName dummy-host.example.com
ErrorLog logs/dummy-host2.example.com-error_log
CustomLog logs/dummy-host2.example.com-access_log common
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9099175/viewspace-927084/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- apache一個IP多個站點的配置方法Apache
- Apache配置多個網站的方法Apache網站
- linux下一個網路卡配置多個IPLinux
- 如何使用 Apache Web 伺服器配置多個站點ApacheWeb伺服器
- Apache搭建多個站點方法詳解Apache
- Windows 一個網路卡配多個IPWindows
- Apache配置多個專案公用80埠Apache
- 一個域名可以對應多個IP嗎?如何透過DNS實現?DNS
- 利用Apache的VirtualHost在本地搭建多個站點Apache
- Solaris下網路卡繫結多個IP
- 請教一個軟體應用如何在多個網站複用網站
- AIX中為單網路卡配置多IP地址(轉)AI
- oracle一個process對應多個session測試OracleSession
- SCO一個網路卡上面繫結多個IP地址(轉)
- oracle一個例項配置多個listener或多個埠Oracle
- Azure上每個VM多個IP地址
- windows針對不同域名,配置多個私鑰Windows
- Spring-MultiValueMap(一個Key對應多個Value)Spring
- oracle一個別例項配置多個listener或多個埠Oracle
- mysql繫結多個ip地址MySql
- Windows下單網路卡繫結多個IP地址Windows
- 如何利用帝國CMS搭建多個網站?網站
- 實現多型多對多 幾個注意點多型
- Git配置單個或多個SSHGit
- Nginx單IP地址配置多個SSL證書的方法示例Nginx
- Docker 中使用 Nginx 代理多個應用站點DockerNginx
- nginx伺服器下配置多個站點的方法Nginx伺服器
- tomcat下多個埠,多個應用(轉載)Tomcat
- 【DG】dg中如何配置多個後臺observerServer
- git配置多個ssh keyGit
- 這個專案,教大家仿 100 多個知名網站!網站
- 一個網站有多個語言版本怎麼處理?網站
- 在一臺Apache伺服器上建立多個站點(不同域名)Apache伺服器
- 手機訪問電腦本地多個網站網站
- 同機多Github賬號配置多個SSHGithub
- 多個旅遊網站被掛馬五一假期外出旅遊應小心網站
- linux VM複製多個IP配置出錯的處理Linux
- Python 字典中一鍵對應多個值Python