View previous topic :: View next topic |
Author |
Message |
binu
Joined: 25 Jan 2009 Posts: 3
|
Posted: Mon Jan 26, 2009 4:23 am Post subject: HowTo have Request Tracker listen on port 80? |
|
|
I installed Request Tracker 3.6 in Ubuntu 8.04 and able to open the login page using
http://localhost/rt or http://ipaddress/rt.
Can I get this login page open using the ipaddress only like http://localhost. can i have it without typing /rt at the end.
Request tracker should listen on port 80.
Thanks in Advance
Binu Manickkam |
|
Back to top |
|
 |
jacob Site Admin


Joined: 16 Mar 2006 Posts: 73 Location: USA
|
Posted: Wed Jan 28, 2009 3:54 pm Post subject: use http redirect... |
|
|
go into /var/www
make a file called index.html
Example:
Code: |
sudo vim /var/www/index.html
|
And then paste this into it:
Code: |
<html>
<head>
<META HTTP-EQUIV = "Refresh" CONTENT = "0; URL=rt/">
</head>
<body>
</body>
</html>
|
that should do the trick,
Jacob |
|
Back to top |
|
 |
binu
Joined: 25 Jan 2009 Posts: 3
|
Posted: Thu Jan 29, 2009 3:28 am Post subject: Request Tracker in Ubuntu |
|
|
Thanks. It worked fine.
Binu Manickkam  |
|
Back to top |
|
 |
|