How do I run Trac on a public server?

Since TFS is too big for our project, we want to use subversion and Trac. The hosting environment contains Windows 2003 and IIS.

There are several options:

  • Run tracd
  • Start Apache with mod_python
  • Run tracd with AJP Protocol and isapi-redirector

We aim to integrate Trac with IIS and isapi-redirector. What would you suggest?

0


source to share


2 answers


You ask two questions, how do I get them running and what I suggest.

  • I am running it from Apache.
  • I suggest doing it this way (no surprise).

I feel like working with a web server gives you more flexibility and working with Apache gives you more portability.



On the other hand, the fact of its launch is more important than how you do it.

Cheers, Glenn

+2


source


We start Apache listening on port 443 (https) for Trac and Svn (WebDAV), and IIS listening on port 80 (http) for public web pages. Configuring Apache for Trac and Svn was very simple and well documented.



0


source







All Articles