|
|
 |
| Apache Tomcat General discussion of the Apache Tomcat servlet container. For discussions specific to the Professional Apache Tomcat book, please see the book discussion forum for that book. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Apache Tomcat section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

September 24th, 2009, 01:59 PM
|
|
Registered User
|
|
Join Date: Sep 2009
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Can I Host Multiple Websites Through One Tomcat
Hi
I am new to this ubuntu operating system
i have installed apache-tomcat .
In Apache we can use <virtualhost> in httpd.conf to host
more than one websites . But i am having doubt in tomcat
how to host two multiple websites through tomcat.
can we use <virtualhost> in tomcat ?
|

October 5th, 2009, 02:28 AM
|
|
Friend of Wrox
|
|
Join Date: Mar 2007
Location: Hyderabad, A.P., India.
Posts: 363
Thanks: 0
Thanked 1 Time in 1 Post
|
|
As per my knowledge, one simple way of doing it is having multiple <Host> tags in your server.xml. Like as follows
Code:
<Engine defaultHost="www.WEBSITE1.com" name="Catalina">
<Host name="www.WEBSITE1.com" appBase="/usr/share/tomcat5.5/webapps/WEBSITE1">
<Context path="" docBase="."/>
</Host>
<Host name="www.WEBSITE2.com" appBase="/usr/share/tomcat5.5/webapps/WEBSITE2">
<Context path="" docBase="."/>
</Host>
.....
</Engine>
And for information about virtual hosting go through following links
http://tomcat.apache.org/tomcat-6.0-...ing-howto.html
http://www.ex-parrot.com/pete/tomcat-vhost.html
|

October 18th, 2009, 10:18 AM
|
|
Friend of Wrox
|
|
Join Date: Mar 2007
Location: Hyderabad, A.P., India.
Posts: 363
Thanks: 0
Thanked 1 Time in 1 Post
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |