Configure my apache to run RT along with other content

I�m new to this list. I just finished installing RT, now here�s my question.
How do I configure my apache to run RT along with other content on a single
server?
The server where we installed RT is also hosting web pages for our intraner.

TIA

Billy

What I did was set up an extra port for RT and then users can browse in to the main content and select RT as a link.

Standard IP based Virtual Hosting - single IP with multiple ports for host differentiation.

In the httpd.conf

Listen 192.168.0.1:80

Listen 192.168.0.1:8080

#Port 80

<VirtualHost 192.168.0.1:8080>

        DocumentRoot /opt/rt3/html/share

        ...regular stuff from the example

When you browse to the site you get port 80 and the default root, /usr/local/apache/htdocs or whatever.

Then I have a link in that index.html Request Tracker.

Don’t forget to edit RT_Siteconfig.pm and change the WebBaseURL value.

        Set( $WebBaseURL , http://192.168.0.1:8080 <http://192.168.0.1:8080/>  );

Good luck,

Greg

Gregory L. Hering

(256) 722-6420

4807 Bradford Dr

Benchmark Electronics, Inc.

Hunvtsville, Al 35805-----Original Message-----
From: Billy Dimaculangan [mailto:bmdimaculangan@bhpi.com.ph]
Sent: Thursday, May 08, 2003 10:09 PM
To: rt-users@lists.fsck.com
Subject: [rt-users] configure my apache to run RT along with other content

I’m new to this list. I just finished installing RT, now here’s my question.

How do I configure my apache to run RT along with other content on a single server?

The server where we installed RT is also hosting web pages for our intraner.

TIA

Billy