urvoip1 wrote:I already modified in my httpd.conf to port 80
I have total 3 websites hosted on this server. All of them are using jboss. Rest of these sites are working with port 80. Only JForum is not accessible via port 80. I must have missed something here, may be very minute.
Any other help is appreciated.
In that case, you're not really using JBoss with Apache, you're using JBoss AND Apache. The two are acting as separate servers and never the twain shall meet.
What you want to do is setup the ProxyPass command in your Apache config to forward all requests to localhost:8080. Use ProxyPassReverse to automatically switch any URLs to the port 80 server. More info on this configuration can be found here:
http://httpd.apache.org/docs/1.3/mod/mod_proxy.html
There's also an Apache plugin to make JBoss/Tomcat work with Apache, but the ProxyPass solution works just as well and is easier to maintain.
[originally posted on jforum.net by jbanes]