先看httpd.conf 文件配置:
1 ##########################apache + tomcat start 2 LoadModule proxy_module modules/mod_proxy.so3 LoadModule proxy_ajp_module modules/mod_proxy_ajp.so4 LoadModule proxy_balancer_module modules/mod_proxy_balancer.so5 LoadModule proxy_connect_module modules/mod_proxy_connect.so6 LoadModule proxy_ftp_module modules/mod_proxy_ftp.so7 LoadModule proxy_http_module modules/mod_proxy_http.so8 ##########################apache + tomcat end
虚拟主机配置,还是httpd.conf文件:
################################################apache tomcat vhostInclude conf/extra/httpd-vhosts.conf
最后在httpd.conf文件最后加入:
#************************************************ProxyPass / ajp://127.0.0.1:8009/ProxyPassReverse / ajp://127.0.0.1:8009/
关于vhost配置文件:
ServerAdmin webmaster@dummy-host.thinkdee.com DocumentRoot "D:/workspace/apache-tomcat-6.0.36/webapps/qiye" ServerName www.thinkdee.com ServerAlias thinkdee.com ProxyPass /static ! ProxyPass /html ! ProxyPass /js ! ProxyPass / balancer://thinkdee/ BalancerMember ajp://www.thinkdee.com:8080/# BalancerMember ajp://server2:8080/# BalancerMember ajp://server3:8080/ ErrorLog "logs/dummy-host.thinkdee.com-error.log" CustomLog "logs/dummy-host.thinkdee.com-access.log" common
在本地hosts文件中加入了
127.0.0.1 www.thinkdee.com
配置好,重新启动apache就行了,
本地的tomcat6,端口仍是8080,没有变化,
运行apache只要没有错,基本上就成功了,
tomcat启动起来,
测试如下:直接访问http://www.thinkdee.com:8080/showlogin 可以正常访问,
不要8080端口也可以访问,http://www.thinkdee.com/showlogin 可以正常访问,