Apache设置虚拟WEB


Posted in PHP onOctober 09, 2006

Apache Server设置虚拟WEB 

先举个例子:
假设你的PHP装在 d:/php/ 下.
Copy php4apache.dll (php4apache2.dll) 到d:/php/
在 Aapche的httpd.conf 下面加入:

######################################################
Aapche1 是:
LoadModule php4_module "d:/php/php4apache.dll" 
Aapche2 是:
LoadModule php4_module "d:/php/php4apache2.dll"

添加由PHP解析的扩展名:
AddType application/x-httpd-php .phtml .pwml .php3 .php4 .php .php2 .inc .izz
######################################################

现在,你只要重启Apache后,就可以支持PHP了.

#下面这一行只有Apache1支持
LoadModule gzip_module modules/ApacheModuleGzip.dll

ApacheModuleGzip(即:mod_gzip),是Remote Communications免费提供的一个Apache模块,它可以压缩静态的web页面。它工作得很好,你只需要将它和apache一起编译就行了(或者将它作为一个DSO使用)。

你也可以在冰冰本站下载:
http://justdn.com/down/apache/ApacheModuleGzip.dll

更多的PHP加速和缓冲建议可以在冰冰的PHP文档中获取.

Apache 如何建虚拟主机呢?下面简单介绍基于域名的虚拟主机.
比如你的服务器地址是:61.132.27.69 (这个是冰冰的啦),现在我们要建 www.justdn.org 和 www.justdn.com 两个虚拟主机.
在Apache的httpd.conf后面加上如下的代码

######################################################
NameVirtualHost 61.132.27.69
<VirtualHost 61.132.27.69>
ServerAdmin webmaster@justdn.com
DocumentRoot C:/home/justdn.com/
ServerName www.justdn.com
ServerAlias justdn.com wwww.justdn.com
ErrorLog logs/www.justdn.com-error_log
CustomLog logs/www.justdn.com-access_log common
ErrorDocument 404 /404.html
</VirtualHost>
<VirtualHost 61.132.27.69>
ServerAdmin webmaster@justdn.com
DocumentRoot c:/home/justdn.org/
ServerName www.justdn.org
ServerAlias wwww.justdn.org justdn.org
ErrorLog logs/www.justdn.org-error_log
CustomLog logs/www.justdn.org-access_log common
</VirtualHost>
######################################################

下面解释一下,
ServerAdmin,就是管理员的邮箱啦.
DocumentRoot,该虚拟主机的站点文档目录.
ServerName,域名咯.
ServerAlias justdn.com wwww.justdn.com,说明既可以用 www.justdn.com 访问,又可以用 justdn.com 访问站点.
ErrorDocument 404 /404.html,指自定义该站点的404页面为该站点根目录下的404.html文件.

说明:
Unix 平台与NT平台使用apache server的设置相同。以下重点以unix平台为例说明apache server的设置。另外值得注意的是,虚拟web的成功设置,有大约50%的工作量是在域名的注册与解析方面。所以一般先注册好域名然后再做虚拟WEB 设置。

一 、IP型虚拟主机 
IP型虚拟主机指每一虚拟主机对应唯一的IP。可通过多个物理网卡或虚拟网口实现多IP,Solaris2.5和Windows NT都支持这种方式。 
两种配置多虚拟主机的方法: 
1、为每一虚拟主机启动一个httpd进程。 
下列情况下使用此方法: 
1) 需考虑安全隔离问题,如两个httpd运行于不同的User、Group、Listen、ServerRoot,两者用户除通过Web相互浏览数据,无法访问其他数据。 
2) 能提供足够内存和文件描述器。 
设置方法: 
为每一虚拟主机建立一个独立的httpd安装,在每一个安装路径的配置文件httpd.conf里,用Listen指令指定进程服务的IP,如:Listen 10.68.37.10:80 
2、为所有虚拟主机启动一个httpd进程。 
下列情况下使用此方法: 
1) 允许在虚拟主机间共享httpd配置。 
2) 计算机服务于大量的请求,运行多个进程使服务器性能降低成为重要考虑因素。 
设置方法: 
在配置文件httpd.conf里,用VirtualHost指令为每一虚拟主机设置ServerAdmin、ServerName、DocumentRoot、 ErrorLog、TransferLog或CustomLog,如: 
〈VirtualHost www.smallco.com〉 #此处建议用IP 
ServerAdmin webmaster@mail.smallco.com 
DocumentRoot /usr/local/etc/httpd/htdocs/smallco 
ServerName www.smallco.com #建议此处用域名 
ErrorLog /usr/local/etc/httpd/logs/smallco/error_log 
TransferLog /usr/local/etc/httpd/logs/smallco/access_log 
〈/VirtualHost〉 
〈VirtualHost www.baygroup.org〉 #此处建议用IP 
ServerAdmin webmaster@mail.baygroup.org 
DocumentRoot /groups/baygroup/www 
ServerName www.baygroup.org #建议此处用域名 
ErrorLog /groups/baygroup/logs/error_log 
TransferLog /groups/baygroup/logs/access_log 
〈/VirtualHost〉 
同时要做虚拟网口或网卡的配置,在DNS也要做相应设置。 
二 、名字型虚拟主机(Apache1.3以上版本支持) 
 IP型虚拟主机虽好,但不是最佳方案。它要求每一虚拟主机有一专用 IP,在某些机器上难于实现。名字型虚拟主机是指每一虚拟主机的名字不相同,但IP一样。它的好处是不限制虚拟主机数量,配置、使用简单,不需另外的软硬件。缺点是客户端必须支持该部分协议,最近版本的浏览器都支持,某些老版本浏览器不支持。但Apache为此提供了解决方法。 
设置方法: 
在配置文件httpd.conf里,用NameVirtualHost指令设置虚拟主机,如: 
NameVirtualHost 111.22.33.44 
〈VirtualHost 111.22.33.44〉 #建议此处用IP 
ServerName www.domain.tld #建议此处用域名 
DocumentRoot /web/domain 
〈/VirtualHost〉 
同时,在DNS定义www.domain.tld指向111.22.33.44。 
注意:当在NameVirtualHost指令后使用IP时,任何使用IP的URL请求都是针对虚拟主机的,主服务器从不会响应一个使用IP的URL 请求。另外,有些服务器希望以多个名字被访问。例如,假设有某一IP的服务器,希望以名domain.tld、www2.domain.tld都能被访问,做法是在VirtualHost指令部分使用ServerAlias指令。如:ServerAlias domain.tld *.domain.tld 
另附一些虚拟主机的设置实例。 

 
附:虚拟主机设置实例 
IP型的虚拟主机配置 
Setup 1: 服务器有两个IP, 
111.22.33.44 server.domain.tld 
111.22.33.55 www.otherdomain.tld 
www.domain.tld 是server.domain.tld 的别名(CNAME),代表主服务器。 
服务器配置: 
... 
Port 80 
DocumentRoot /www/domain 
ServerName www.domain.tld 
〈VirtualHost 111.22.33.55〉 
DocumentRoot /www/otherdomain 
ServerName www.otherdomain.tld 
... 
〈/VirtualHost〉 
Setup 2: 基本同Setup1,但不设置专门的主服务器。 
服务器配置: 
... 
Port 80 
ServerName server.domain.tld 
〈VirtualHost 111.22.33.44〉 
DocumentRoot /www/domain 
ServerName www.domain.tld 
... 
〈/VirtualHost〉 
〈VirtualHost 111.22.33.55〉 
DocumentRoot /www/otherdomain 
ServerName www.otherdomain.tld 
... 
〈/VirtualHost〉 
这种设置只有当URL为http://server.domain.tld时才击中主服务器 
Setup 3: 服务器有两个IP, 
111.22.33.44 server.domain.tld 
111.22.33.55 www-cache.domain.tld 
www.domain.tld 是server.domain.tld 的别名(CNAME),代表主服务器。 
www-cache.domain.tld是proxy-cache,端口是8080,Web服务器使用默认的80。 
服务器配置: 
... 
Port 80 
Listen 111.22.33.44:80 
Listen 111.22.33.55:8080 
ServerName server.domain.tld 
〈VirtualHost 111.22.33.44:80〉 
DocumentRoot /www/domain 
ServerName www.domain.tld 
... 
〈/VirtualHost〉 
〈VirtualHost 111.22.33.55:8080〉 
ServerName www-cache.domain.tld 
... 
〈Directory proxy:〉 
order deny,allow 
deny from all 
allow from 111.22.33 
〈/Directory〉 
〈/VirtualHost〉 

名字型虚拟主机配置 
Setup 1: 服务器有一个IP, 
111.22.33.44 server.domain.tld. 
www.domain.tld和www.sub.domain.tld是别名(CNAMEs) 。 
服务器配置: 
... 
Port 80 
ServerName server.domain.tld 
NameVirtualHost 111.22.33.44 
〈VirtualHost 111.22.33.44〉 
DocumentRoot /www/domain 
ServerName www.domain.tld 
... 
〈/VirtualHost〉 
〈VirtualHost 111.22.33.44〉 
DocumentRoot /www/subdomain 
ServerName www.sub.domain.tld 
... 
〈/VirtualHost〉 
若使用IP访问服务器,由于 www.domain.tld 有最高优先级,被认为是默认服务器或 
第一服务器。 
Setup 2:服务器有两个IP, 
111.22.33.44 server1.domain.tld 用于主服务器 
111.22.33.55 server2.domain.tld 用于虚拟主机 
别名www.domain.tld用于主服务器, 
别名www.otherdomain.tld用于一个虚拟主机, 
别名www.sub.domain.tld,*.sub.domain.tld 用于另一虚拟主机, 
服务器配置: 
... 
Port 80 
ServerName www.domain.tld 
DocumentRoot /www/domain 
NameVirtualHost 111.22.33.55 
〈VirtualHost 111.22.33.55〉 
DocumentRoot /www/otherdomain 
ServerName www.otherdomain.tld 
... 
〈/VirtualHost〉 
〈VirtualHost 111.22.33.55〉 
DocumentRoot /www/subdomain 
ServerName www.sub.domain.tld 
ServerAlias *.sub.domain.tld 
... 
〈/VirtualHost〉 
混合型(IP/名字)虚拟主机配置 
Setup:服务器有三个IP, 
111.22.33.44 server.domain.tld 用于名字型虚拟主机 
111.22.33.55 www.otherdomain1.tld 用于IP型虚拟主机 
111.22.33.66 www.otherdomain2.tld 用于IP型虚拟主机 
服务器配置: 
... 
Port 80 
ServerName server.domain.tld 
NameVirtualHost 111.22.33.44 
〈VirtualHost 111.22.33.44〉 
DocumentRoot /www/domain 
ServerName www.domain.tld 
... 
〈/VirtualHost〉 
〈VirtualHost 111.22.33.44〉 
DocumentRoot /www/subdomain1 
ServerName www.sub1.domain.tld 
... 
〈/VirtualHost〉 
〈VirtualHost 111.22.33.44〉 
DocumentRoot /www/subdomain2 
ServerName www.sub2.domain.tld 
... 
〈/VirtualHost〉 
〈VirtualHost 111.22.33.55〉 
DocumentRoot /www/otherdomain1 
ServerName www.otherdomain1.tld 
... 
〈/VirtualHost〉 
〈VirtualHost 111.22.33.66〉 
DocumentRoot /www/otherdomain2 
ServerName www.otherdomain2.tld 
... 
〈/VirtualHost〉 
端口型虚拟主机配置 
Setup: 服务器有一个IP, 
111.22.33.44 www.domain.tld 
不需要另外的别名或IP,采用端口型虚拟主机即可设置一个配置有别于主服务器的虚 
拟主机。 
服务器配置: 
... 
Listen 80 
Listen 8080 
ServerName www.domain.tld 
DocumentRoot /www/domain 
〈VirtualHost 111.22.33.44:8080〉 
DocumentRoot /www/domain2 
... 
〈/VirtualHost〉

PHP 相关文章推荐
基于Snoopy的PHP近似完美获取网站编码的代码
Oct 23 PHP
php比较两个绝对时间的大小
Jan 31 PHP
PHP+jQuery 注册模块的改进(三):更新到Smarty3.1
Oct 14 PHP
PHP改进计算字符串相似度的函数similar_text()、levenshtein()
Oct 27 PHP
PHP中SimpleXML函数用法分析
Nov 26 PHP
PHP递归遍历指定目录的文件并统计文件数量的方法
Mar 24 PHP
PHP中preg_match正则匹配中的/u、/i、/s含义
Apr 17 PHP
在PHP站点的页面上添加Facebook评论插件的实例教程
Jan 08 PHP
php版微信公众平台开发之验证步骤实例详解
Sep 23 PHP
PHP foreach遍历多维数组实现方式
Nov 16 PHP
让ThinkPHP的模板引擎达到最佳效率的方法详解
Mar 14 PHP
PHP中类型转换 ,常量,系统常量,魔术常量的详解
Oct 26 PHP
PHP&amp;MYSQL服务器配置说明
Oct 09 #PHP
国内php原创论坛
Oct 09 #PHP
强烈推荐:php.ini中文版(2)
Oct 09 #PHP
强烈推荐:php.ini中文版(1)
Oct 09 #PHP
Php部分常见问题总结
Oct 09 #PHP
PHP树的代码,可以嵌套任意层
Oct 09 #PHP
PHP中的超全局变量
Oct 09 #PHP
You might like
php的ajax框架xajax入门与试用介绍
2010/12/19 PHP
PHP之数组学习
2011/05/29 PHP
php如何解决无法上传大于8M的文件问题
2014/03/10 PHP
PHP把空格、换行符、中文逗号等替换成英文逗号的正则表达式
2014/05/04 PHP
WAMP环境中扩展oracle函数库(oci)
2015/06/26 PHP
php curl发送请求实例方法
2019/08/01 PHP
同一个表单 根据要求递交到不同页面的实现方法小结
2009/08/05 Javascript
获取offsetTop和offsetLeft值的js代码(兼容)
2013/04/16 Javascript
Jquery chosen动态设置值实例介绍
2013/08/08 Javascript
让浏览器DOM元素最后加载的js方法
2014/07/29 Javascript
详解JavaScript中void语句的使用
2015/06/04 Javascript
Angular.js回顾ng-app和ng-model使用技巧
2016/04/26 Javascript
JQuery实现列表中复选框全选反选功能封装(推荐)
2016/11/24 Javascript
Bootstrap基本组件学习笔记之导航(10)
2016/12/07 Javascript
基于ajax与msmq技术的消息推送功能实现代码
2016/12/26 Javascript
vue中导出Excel表格的实现代码
2018/10/18 Javascript
解决layui追加或者动态修改的表单元素“没效果”的问题
2019/09/18 Javascript
微信小程序实现带放大效果的轮播图
2020/05/26 Javascript
详解Vue+elementUI build打包部署后字体图标丢失问题
2020/07/13 Javascript
[02:43]2018DOTA2亚洲邀请赛主赛事首日TOP5
2018/04/04 DOTA
python在多玩图片上下载妹子图的实现代码
2013/08/13 Python
解决python3中解压zip文件是文件名乱码的问题
2018/03/22 Python
解决Matplotlib图表不能在Pycharm中显示的问题
2018/05/24 Python
Python3.5基础之NumPy模块的使用图文与实例详解
2019/04/24 Python
基于Python获取城市近7天天气预报
2019/11/26 Python
python重要函数eval多种用法解析
2020/01/14 Python
浅析NumPy 切片和索引
2020/09/02 Python
伦敦剧院及景点门票:Encore Tickets
2018/07/01 全球购物
LN-CC中国:高端男装和女装的奢侈时尚目的地
2019/09/14 全球购物
be2台湾单身男女交友:全球网路婚姻介绍的领导品牌
2019/10/11 全球购物
财务助理岗位职责
2013/11/10 职场文书
教师求职信范文分享
2013/12/27 职场文书
优秀老师事迹材料
2014/02/05 职场文书
教育系统干部作风整顿心得体会
2014/09/09 职场文书
我们认为中短波广播场强仪的最佳组合
2022/04/05 无线电
Java后端 Dubbo retries 超时重试机制的解决方案
2022/04/14 Java/Android