How to mount Web application in Apache/Tomcat environment on UNIX?
When you install Tomcat 3.1beta1, the examples of web applications will be located under directory $TOMCAT_HOME/webapps. For the real stuff, it is probably not where you want your Web Applications to be located. You want them in your Web Documement Tree. For example, for apache, by default, it will be $APACHE_HOME/htdocs. Assuming that your web application is located in the directory /home/joeshmoe/mystuff/Shop, and you want to access it as: http://www.mycomp.com/Shop/ you may want to move it to $APACHE_HOME/htdocs, i.e, create directory $APACHE_HOME/htdocs/Shop. Note, that you can mount and serve on the web any directory which is accessible on your computer. The issue is that from the maintainance perspective, it is nice to have things in the expected place, i.e., under Web Server Document Root directory. But if you just moved it there, and did not change the configuration files, Apache would serve this directory as regular files, and Tomcat would not even know about it. To have this
Related Questions
- My web application runs fine on my Windows development machine, but when I deploy it to the Unix/Linux production server, it doesn work. What is the problem?
- My web application runs fine on my Windows development machine, but when I deploy it to the Unix/Linux production server, it doesn work. What is the problem?
- Do I need to make any changes to my Web application currently deployed in Tomcat in order to move it to WebLogic Express?
- How to mount Web application in Apache/Tomcat environment on UNIX?
- in a LAN environment to Agware deployment as a Web application?
- in a LAN environment to Agware deployment as a Web application?