Changes between Version 5 and Version 6 of ProxyDavPlugin


Ignore:
Timestamp:
Nov 9, 2015, 2:26:08 PM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • ProxyDavPlugin

    v5 v6  
    55== Description
    66
    7 A simple plugin that provides access through dav (work like a proxy) at the repositories of the project. You can handle permission of PULL (get repo) or PUSH (put repo) from Admin. A dav proxy with control access using Trac permissions.
     7This is a plugin that provides access through dav (work like a proxy) at the repositories of the project. You can handle permission of PULL (get repo) or PUSH (put repo) from Admin. A dav proxy with control access using Trac permissions.
    88
    99== Bugs/Feature Requests
     
    1313
    1414If you have any issues, create a
    15 [http://trac-hacks.org/newticket?component=ProxyDavPlugin&owner=castorinop new ticket].
     15[/newticket?component=ProxyDavPlugin new ticket].
    1616
    1717[[TicketQuery(component=ProxyDavPlugin&group=type,format=progress)]]
     
    1919== Download
    2020
    21 Download the zipped source from [download:proxydavplugin here].
     21Download the zipped source from [export:proxydavplugin here].
    2222
    2323== Source
    2424
    2525You can check out ProxyDavPlugin from:
    26  * [http://trac-hacks.org/svn/proxydavplugin here] using Subversion.
     26 * [/svn/proxydavplugin here] using Subversion.
    2727 * [https://github.com/castorinop/proxydav here] using git.
    2828 * [source:proxydavplugin browse the source] with Trac (no source added yet).
    2929
     30== Installation
     31
     32General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
     33
     34== Configuration
     35
     36 * Enable ProxyDavPlugin on Admin | Plugins.
     37 * Add the following to your `trac.ini` file:
     38{{{#!ini
     39[proxydav]
     40url = http://127.0.0.1/git
     41}}}
     42
    3043== Example
    3144
    32 === Enable a dav repository
     45To enable a dav repository, edit `/etc/httpd/conf.d/gitdav.conf` as follows:
    3346
    34  * Edit /etc/httpd/conf.d/gitdav.conf
    35 
    36 {{{
     47{{{#!apache
    3748Alias /git /var/www/repo_git
    3849<Directory "/var/www/repo_git">
     
    4152     Allow from 127.0.0.0/8
    4253</Directory>
    43 }}}
    44 
    45 === Configure Plugin
    46 
    47  * Enable ProxyDavPlugin on Admin | Plugins.
    48  * Add the following to your `trac.ini` file:
    49 {{{#!ini
    50 [proxydav]
    51 url = http://127.0.0.1/git
    5254}}}
    5355