Changeset 726 in MondoRescue for branches


Ignore:
Timestamp:
Jul 30, 2006, 2:50:20 AM (18 years ago)
Author:
Bruno Cornec
Message:

trac integration

Location:
branches/stable/website
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/website/downloads.shtml

    r683 r726  
    7373<ul>
    7474    <li>tarballs are available under <a href="ftp://ftp.mondorescue.org/src">ftp://ftp.mondorescue.org/src</a></li>
    75     <li>Subversion browing available at <a href="http://svn.berlios.de/viewcvs/mondorescue">http://svn.berlios.de/viewcvs/mondorescue</a></li>
    76     <li>Anonymous HTTP Subversion check out of the project available with the following instruction set: <pre><tt>svn checkout http://svn.berlios.de/svnroot/repos/mondorescue/branches/stable</tt></pre></li>
    77     <li>Anonymous SVN Subversion check out of the project available with the following instruction set: <pre><tt>svn checkout svn://svn.berlios.de/mondorescue/branches/stable</tt></pre></li>
     75    <li>Subversion browing available at <a href="http://www.mondorescue.org/cgi-bin/trac.cgi/browser/">http://www.mondorescue.org/cgi-bin/trac.cgi/browser/</a></li>
     76    <li>Anonymous SVN Subversion check out of the project available with the following instruction set: <pre><tt>svn checkout svn://svn.mondorescue.org/mondorescue/branches/stable</tt></pre></li>
    7877</ul>
    7978
  • branches/stable/website/mondorescue.org.conf

    r543 r726  
    11#
    22# Apache Virtual Host Configuration File
    3 #
     3# Replace * by IP address of the machine
    44NameVirtualHost *
    55
     
    2121        Allow from all
    2222    </Directory>
     23    <Directory "/mondo/www/cgi-bin">
     24        AllowOverride All
     25        Options ExecCGI FollowSymLinks
     26        Order allow,deny
     27        Allow from all
     28    </Directory>
     29
     30    ScriptAlias /cgi-bin/ "/mondo/www/cgi-bin/"
     31
     32    # fix mdk bug #16298
     33    PassEnv LC_ALL
     34    PassEnv LANG
     35
     36    # fix mdk bug #16298
     37    <Directory "/usr/share/trac/htdocs/">
     38        Options Indexes MultiViews
     39        AllowOverride None
     40        Order allow,deny
     41        Allow from All
     42    </Directory>
     43   
     44    Alias /trac/ "/usr/share/trac/htdocs/"
     45    <Location "/cgi-bin/trac.cgi">
     46        SetEnv TRAC_ENV "/mondo/trac/mondorescue.env"
     47    </Location>
     48
     49    # You need something like this to authenticate users
     50    <Location "/cgi-bin/trac.cgi/login">
     51        AuthType Basic
     52        AuthName "MondoRescue"
     53        AuthUserFile /etc/trac.htpasswd
     54        Require valid-user
     55    </Location>
    2356</VirtualHost>
    2457
Note: See TracChangeset for help on using the changeset viewer.