Edgewall Software

Changes between Version 4 and Version 5 of TracOnLeopardServer


Ignore:
Timestamp:
Feb 20, 2008, 10:47:39 PM (16 years ago)
Author:
drry
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracOnLeopardServer

    v4 v5  
    2020 % svn ci -m "Initial structure"
    2121}}}
    22  1. With that simple repository, time to set up apache to get HTTP access to this (via DAV).  Later, this will facilitate moving the HTTP-based authentication against the Mac OSX server directory. To do this, create a file ```httpd-subversion.conf``` in ```/private/etc/apache2/extra``` with the following contents:
     22 1. With that simple repository, time to set up apache to get HTTP access to this (via DAV).  Later, this will facilitate moving the HTTP-based authentication against the Mac OS X server directory. To do this, create a file ```httpd-subversion.conf``` in ```/private/etc/apache2/extra``` with the following contents:
    2323{{{
    2424 DavLockDB var/DavLock
     
    102102 1. To set up TRAC to run under Apache (so we can get a single authentication system in place), we need to create ```httpd-fastcgi.conf``` under ```/private/etc/apache2/extra``` with the following content:
    103103{{{
    104 # Enable FASTCGI for .fcgi files
    105 <IfModule mod_fastcgi.c>
     104LoadModule fastcgi_module libexec/apache2/mod_fastcgi.so
     105
     106# Enable FastCGI for .fcgi files
     107<IfModule fastcgi_module>
    106108    AddHandler fastcgi-script .fcgi
    107    FastCgiIpcDir var/run/fastcgi
     109    FastCgiIpcDir var/run/fastcgi
    108110</IfModule>
    109 
    110 LoadModule fastcgi_module libexec/apache2/mod_fastcgi.so
    111111}}}
    112112 1. Configure apache to react to ```/trac``` references using fastcgi with the following content in ```httpd-trac.conf``` (also in ```/private/etc/apache2/extra```
     
    169169    > quit
    170170}}}
    171 
    172