You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Bjørn T Johansen <bt...@havleik.no> on 2006/05/18 13:11:26 UTC

Using mod_jdk?

I am using the following mount command in my apache config.:

JkMount  /webapp/* worker1

But I have to use this url to make it work..: http://www.domain.no/webapp/
and I would like this url to work also..: http://www.domain.no/webapp


Is that possible?


Regards,

BTJ

-- 
-----------------------------------------------------------------------------------------------
Bjørn T Johansen

btj@havleik.no
-----------------------------------------------------------------------------------------------
Someone wrote:
"I understand that if you play a Windows CD backwards you hear strange Satanic messages"
To which someone replied:
"It's even worse than that; play it forwards and it installs Windows"
-----------------------------------------------------------------------------------------------

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: Using mod_jk?

Posted by Bjørn T Johansen <bt...@havleik.no>.
Yes, that did the trick... Thx... :)

BTJ

On Thu, 18 May 2006 13:24:44 +0200
Franck Borel <bo...@ub.uni-freiburg.de> wrote:

> Try this
> 
> <IfModule mod_jk.c>
>     JkWorkersFile "conf/workers.properties"
>     JkLogFile "logs/mod_jk.log"
>     JkLogLevel warn
> 
>     JkMount /webapp ajp13
>     JkMount /webapp/* ajp13
> </IfModule>
> 
> 
> -- Franck
> > It should be mod_jk.... 
> >
> > On Thu, 18 May 2006 13:11:26 +0200
> > Bjørn T Johansen <bt...@havleik.no> wrote:
> >
> >   
> >> I am using the following mount command in my apache config.:
> >>
> >> JkMount  /webapp/* worker1
> >>
> >> But I have to use this url to make it work..: http://www.domain.no/webapp/
> >> and I would like this url to work also..: http://www.domain.no/webapp
> >>
> >>
> >> Is that possible?
> >>
> >>
> >> Regards,
> >>
> >> BTJ
> >>
> >>     
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
> > For additional commands, e-mail: users-help@tomcat.apache.org
> >
> >

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: Using mod_jk?

Posted by Franck Borel <bo...@ub.uni-freiburg.de>.
Try this

<IfModule mod_jk.c>
    JkWorkersFile "conf/workers.properties"
    JkLogFile "logs/mod_jk.log"
    JkLogLevel warn

    JkMount /webapp ajp13
    JkMount /webapp/* ajp13
</IfModule>


-- Franck
> It should be mod_jk.... 
>
> On Thu, 18 May 2006 13:11:26 +0200
> Bjørn T Johansen <bt...@havleik.no> wrote:
>
>   
>> I am using the following mount command in my apache config.:
>>
>> JkMount  /webapp/* worker1
>>
>> But I have to use this url to make it work..: http://www.domain.no/webapp/
>> and I would like this url to work also..: http://www.domain.no/webapp
>>
>>
>> Is that possible?
>>
>>
>> Regards,
>>
>> BTJ
>>
>>     
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: users-help@tomcat.apache.org
>
>
>   


-- 
====================================================================
Dipl.-Hyd. Franck Borel               Universitaetsbibliothek Freiburg
EMail: borel@ub.uni-freiburg.de       EDV-Dezernat
Tel. : +49-761 / 203-3908             Werthmannplatz 2 | Postfach 1629
Fax  : +49-761 / 203-3987             79098 Freiburg   | 79016 Freiburg



Re: Using mod_jk?

Posted by Bjørn T Johansen <bt...@havleik.no>.
It should be mod_jk.... 

On Thu, 18 May 2006 13:11:26 +0200
Bjørn T Johansen <bt...@havleik.no> wrote:

> I am using the following mount command in my apache config.:
> 
> JkMount  /webapp/* worker1
> 
> But I have to use this url to make it work..: http://www.domain.no/webapp/
> and I would like this url to work also..: http://www.domain.no/webapp
> 
> 
> Is that possible?
> 
> 
> Regards,
> 
> BTJ
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: Using mod_jdk?

Posted by Gaël Lams <la...@gmail.com>.
Hi,

> I am using the following mount command in my apache config.:
>
> JkMount  /webapp/* worker1
>
> But I have to use this url to make it work..: http://www.domain.no/webapp/
> and I would like this url to work also..: http://www.domain.no/webapp
>
> Is that possible?
>

Yes, rewrite it first: http://httpd.apache.org/docs/2.2/misc/rewriteguide.html

Regards,

Gaël