Jump to content

Server Config: Difference between revisions

From NikiWiki
No edit summary
Line 20: Line 20:


* ACLs: http://svnbook.red-bean.com/en/1.1/svn-book.html#svn-ch-6-sect-4.4.2
* ACLs: http://svnbook.red-bean.com/en/1.1/svn-book.html#svn-ch-6-sect-4.4.2
===TRAC config===
First install mod_python:
* port: <tt>www/mod_python3</tt>
* make: <tt>make</tt>
After the install you will have a mod_python in <tt>/usr/local/libexec/apache2</tt>. Load this module in Apache2 according to the output you get during the install of the module.
Now create a TRAC project with
$ trac-admin /path/to/trac_project_env initenv
As it can be found at:
* http://projects.edgewall.com/trac/wiki/TracInstall
To configure Apache2 for multiple TRAC projects check:
* http://projects.edgewall.com/trac/wiki/TracMultipleProjects

Revision as of 15:29, 1 September 2005

FreeBSD

Apache2

  • port: www/apache2
  • make: make WITH_BERKELEYDB=db42 WITH_LDAP_MODULES=yes

Subversion

  • port: devel/subversion-python
  • make: make -DWITH_MOD_DAV_SVN

Apache2 Subversion config

Basically you can take the following doc as reference:

Make sure you read the most recent version at the time writing (1.1 might be depricated)

The modules on FreeBSD can be found in /usr/local/libexec/apache2

TRAC config

First install mod_python:

  • port: www/mod_python3
  • make: make

After the install you will have a mod_python in /usr/local/libexec/apache2. Load this module in Apache2 according to the output you get during the install of the module.

Now create a TRAC project with

$ trac-admin /path/to/trac_project_env initenv

As it can be found at:

To configure Apache2 for multiple TRAC projects check: