您的位置:首页 > 理论基础 > 计算机网络

整合apache和tomcat:http_proxy方法

2013-07-27 17:51 471 查看
安装apache httpd

yum -y install httpd

http_proxy 方式需要的模块:

mod_proxy.so 和 mod_proxy_http.so

在httpd.conf文件末尾添加:

#The configure of TomCat
<VirtualHost *:80>
ServerName www.abc.com
ProxyPass / /http://localhost:8080/
#Entrus httpd to do
ProxyPass /images !
</VirtualHost>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: