I have an Apache +
Tomcat web server. My web application is using
JSP/Java for the most part, but there are some pages that are also
PHP. My PHP pages are currently powered on 80
Right now our web application has tomcat set to:
http://mydomain.com:8080
In addition, We are deploying our web application .war file in: /var/lib/tomcat5/webapps/MyWebApp
The problem is, when we need to access our web site, we have to go to:
http://mydomain.com:8080/MyWebApp to see work welcome page.
1) How can we change this, so when the user types: www.mydomain.com, it points straight to our .../MyWebApp/index.jsp file?
2) We currently access our PHP files via www.mydomain.com/upload.php. It is listening on port 80
Please...Help