首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > Apache >

linux下apache域名配置有关问题

2013-07-01 
linux下apache域名配置问题我现在的域名www.abc.com可以ping通,就是服务器地址,在httpd.conf配置NameVirtu

linux下apache域名配置问题
我现在的域名www.abc.com可以ping通,就是服务器地址,在httpd.conf配置
NameVirtualHost *:80
<VirtualHost *:80>
    ServerName www.abc.com
    ServerAlias www.abc.cn abc.com abc.cn     
    ProxyPass / http://127.0.0.1:8089/abc/
    ProxyPassReverse / http://127.0.0.1:8089/abc/
    ProxyPassReverseCookiePath / /
</VirtualHost>没有起到作用,总是报连接被重置,域名解析是好的,是什么情况呢??
apache linux 服务器
[解决办法]
httpd.conf 有没有加

ServerName www.abc.com:80
DocumentRoot "/var/www/html"
<Directory "/var/www/html">
    Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

热点排行