Re: virtualhost and deployment applications

2005-02-09 Thread Delian Krustev
Carlos Gabriel Arce wrote: Thanks for your answer. I'll show you my server.xml conf: Define a separate workDir for each vhost. More info in ${CATALINA_HOME}/webapps/tomcat-docs/config/host.html - To unsubscribe, e-mail:

Re: virtualhost and deployment applications

2005-02-07 Thread Carlos Gabriel Arce
Thanks for your answer. I'll show you my server.xml conf: ... Host name=domain1.com debug=9 appbase=WWW/domain1.com unpackWARS=true autoDeploy=true xmlValidation=false xmlNamespaceAware=false Context path= docBase=WWW/domain1.com debug=9 reloadable=true/ Context

Re: virtualhost and deployment applications

2005-02-05 Thread Mario Winterer
Hi! I think, there's something wrong with your context-definition or server.xml. Make sure each of your hosts have a webapplication base directory for their own!!! Do not use one single webapps-directory for all of your hosts! My directory structure looks as follows:

virtualhost and deployment applications

2005-02-04 Thread Carlos Gabriel Arce
Good Day I have a question. Is possible deploy an application per virtualhost, where the deployed applications could'nt see them each other? Thanks in advance. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: virtualhost and deployment applications

2005-02-04 Thread Hari Mailvaganam
The VirtualHost binding can be conducted via Apache HTTP Server and use mod_proxy to the appropriate URI running in the Tomcat. On Fri, 04 Feb 2005 07:41:24 -0500, Carlos Gabriel Arce [EMAIL PROTECTED] wrote: Good Day I have a question. Is possible deploy an application per virtualhost,

Re: virtualhost and deployment applications

2005-02-04 Thread Carlos Gabriel Arce
But when I deploy a local .war in the administration page www.domain1.com/manager/html this war gets replicated in other virtualhosts. Mario Winterer escribió: Of course! That's Tomcat's default behaviour - and in fact, it is difficult to make it behave different! Have a look at server.xml of

virtualhost and deployment applications

2005-02-03 Thread Carlos Gabriel Arce
Good Day I have a question. Is possible deploy an application per virtualhost, where the deployed applications per virtualhost could'nt see them each other? Thanks in advance. - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: virtualhost and deployment applications

2005-02-03 Thread Mario Winterer
Of course! That's Tomcat's default behaviour - and in fact, it is difficult to make it behave different! Have a look at server.xml of your tomcat's default installation (you need a host-element for each virtual host). More information can be found at

virtualhost and deployment applications

2005-02-01 Thread Carlos Gabriel Arce
Good Day Please help me with a question. I have a Tomcat 5 server running with jdk in a linux box (red hat 9). This server have many virtualhosts configured by host directive. I have a trouble when a hosting deploys an application because the war gets deployed in the catalina home. The