(11-26-2014, 03:59 AM)elitemobb Wrote: Yeah basically my application is running on :8080 I have the subdomain configured in sentora and want to use it to point to the application. Do I need to do a port forward and then proxypass or just run the application on 8080 and enter the proxy pass in the vhost?
You will need to portforward 8080 to your server also.
Also, you will need to add to httpd.conf: LISTEN 8080 after LISTEN 80
Then I think it would look something like this as a custom vhost for the subdomain:
Code:
</VirtualHost>
<VirtualHost *:80>
ServerName sub.domain.com
ProxyRequests off
ProxyPass / http://sub.domain.com:8080/
ProxyPassReverse / http://sub.domain.com:8080/
Oc4jMount / HTML_DV_8080
Oc4jMount /* HTML_DV_8080
Although that topic is not solved. Will look for another example.