Hi Martin, Since you are using Apache with Tomcat you can use AJP instead of mod_jk. Because they are both Apache Software Foundation products AJP is a special protocol to make the two talk. Here is a link to the main AJP page.
http://tomcat.apache.org/connectors-doc/ajp/ajpv13a.html You can do the redirects with either mod_rewrite or a simple redirect statement in httpd.conf. We use just a redirect statement for a number of direct URLs. redirect /home https://<servername or IP>:8080/arsys/home (assuming your Tomcat is running on port 8080) redirect /helpdesk https://<servername or IP>:8080/arsys/forms/<servername>/HPD:HelpDesk/ (we don't have IM or PM yet). We also use mod_proxy to keep the url from changing and showing that Tomcat is really serving up the content on port 8080 in the background. Event though the Mid-Tier URL is http://host:8080/arsys... the user see http://host/arsys. Regarding if there is configuration guide, there is Google. I set ours up a year ago (and didn't document like I should have) and found bits and piece from different web sites in addition to the Apache website. There are a ton of good examples out there you just need to piece it all together. HTH, Jason On Sun, Dec 6, 2009 at 4:42 AM, Martin Liu <[email protected]> wrote: > ** Hi List, > > http://ip_address/ http://ip_address/servicedesk http://ip_address/arsys > are all better then http://ip_address:8080/arsys/ > > ITSM 7.6 is running on my Suse Enterprise Linux 10 p2 server. I think a > nice URL is more easy to remember. > > I have installed Apache 2.0 web server on this machine. I googled mod_jk > already. It seem we have to connect apache and tomcat together by mod_jk. > > Is there any have a short config guide or simple configuration file? > > Regards, > -- > Regards, > > 刘征 Martin Liu > ---------------------------------- > Blog: http://martinliu.cn > _Platinum Sponsor: [email protected] ARSlist: "Where the Answers > Are"_ _______________________________________________________________________________ UNSUBSCRIBE or access ARSlist Archives at www.arslist.org Platinum Sponsor:[email protected] ARSlist: "Where the Answers Are"

