Changes between Version 7 and Version 8 of ProxyDavPlugin


Ignore:
Timestamp:
Oct 2, 2016, 8:16:06 AM (7 years ago)
Author:
figaro
Comment:

Moved example to functional description

Legend:

Unmodified
Added
Removed
Modified
  • ProxyDavPlugin

    v7 v8  
    55== Description
    66
    7 This 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. This is essentially a DAV proxy with control access using Trac permissions. WebDAV stands for "Web-based Distributed Authoring and Versioning". It is a set of extensions to the HTTP protocol which allows users to collaboratively edit and manage files on remote web servers.
     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 Trac's Admin menu. This is essentially a DAV proxy with control access using Trac permissions. WebDAV stands for "Web-based Distributed Authoring and Versioning". It is a set of extensions to the HTTP protocol which allows users to collaboratively edit and manage files on remote web servers.
     8
     9To enable a dav-accessible repository, edit `/etc/httpd/conf.d/gitdav.conf` as follows:
     10
     11{{{#!apache
     12Alias /git /var/www/repo_git
     13<Directory "/var/www/repo_git">
     14     Dav On
     15     Order allow,deny
     16     Allow from 127.0.0.0/8
     17</Directory>
     18}}}
    819
    920== Bugs/Feature Requests
     
    4152}}}
    4253
    43 == Example
    44 
    45 To enable a dav-accessible repository, edit `/etc/httpd/conf.d/gitdav.conf` as follows:
    46 
    47 {{{#!apache
    48 Alias /git /var/www/repo_git
    49 <Directory "/var/www/repo_git">
    50      Dav On
    51      Order allow,deny
    52      Allow from 127.0.0.0/8
    53 </Directory>
    54 }}}
    55 
    5654== Recent Changes
    5755