Link to home
Start Free TrialLog in
Avatar of Nilesh Havire
Nilesh HavireFlag for India

asked on

ProxyPass Problems in Acpache

I am trying to configure ProxyPass rules on Centos on Apache to port forward as per below. I need to have http forwarded to this system. rule is working fine without port, but when I tried to configure with Port it fails.

</VirtualHost>
<VirtualHost *>
SuexecUserGroup "#1000" "#1000"
ServerName Apps_Name.com
ServerAlias www.Apps_Name.com
DocumentRoot /var/www/Apps_Name/
ErrorLog /var/log/httpd/taaray/error_log
CustomLog /var/log/httpd/Apps_Name/access_log "combined"
ScriptAlias /cgi-bin/ /var/www/Apps_Name/cgi-bin/
DirectoryIndex index.html index.htm index.php
<Directory /var/www/Apps_Name>
    FileETag MTime Size
    AllowOverride All
</Directory>
ProxyPass /Apps_Name/ http://XX.XX.XX.XX/Apps_Name
</virtualhost>

above is working fine

I am unable to configure Proxypass rule as per below because Apache not taking port no.
http://LAN_IP:8080/Apps_Name

is there any other way to resolve this issue,
ASKER CERTIFIED SOLUTION
Avatar of morsun
morsun
Flag of Poland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial