----------------------------------------------------------------
系统环境:
Red Hat Enterprise Linux AS release 3 (Taroon)
公网IP地址 2个 (绑定的双IP,这里举例为 111.111……和222.222…… )
apache 2.2.4 仅加载指定模块,当然包括 " Aasis_module (static) "
resin-pro-3.1.3(安装2个,使用不同的目录,监听不同的IP)
java version "1.5.0_06"
iptables 未开启
selinux 未开启
----------------------------------------------------------------
配置文件关键内容(针对该问题):
apache的【httpd.conf】 文件(调用了resin 模块)
#别名部分
Alias /software /data/software
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
#调用模块部分
LoadModule caucho_module /opt/apache-2.2.4/modules/mod_caucho.so
ResinConfigServer localhost 6800
CauchoConfigCacheDirectory /tmp
CauchoStatus yes
apache的 【httpd-vhosts.conf 】 文件 (配置了resin调用)
# ######################################
# ServerAdmin
DocumentRoot /opt/resin1/webapps/10see
ServerName 111.111.111.111
ErrorLog logs/10see-error_log
CustomLog logs/10see-access_log common
ResinConfigServer 111.111.111.111 6800
# ServerAdmin
DocumentRoot /opt/resin2/webapps/cartoon
ServerName 222.222.222.222
ErrorLog logs/cartoon-error_log
CustomLog logs/cartoon-access_log common
ResinConfigServer 222.222.222.222 6800
# ######################################
----------------------------------------------------------------
现象: apache resin1 resin2 启动后
apache httpd.conf 中定义的 Alias 别名不起作用了
但,如果屏蔽了httpd.conf中的 resin调用模块 和VirtualHost中的两个ResinConfigServer,
别名可以识别。
我的问题:
在必须结合resin环境的应用下,怎么使得apache的Alias起作用呢?
阅读(1490) | 评论(1) | 转发(0) |