Differences between revisions 2 and 3
Revision 2 as of 2007-03-06 14:16:38
Size: 1813
Editor: ZoomQuiet
Comment:
Revision 3 as of 2007-03-06 14:17:05
Size: 1813
Editor: ZoomQuiet
Comment:
Deletions are marked like this. Additions are marked like this.
Line 51: Line 51:
  * [How to use Django with FastCGI http://www.djangoproject.com/documentation/fastcgi/]   * [http://www.djangoproject.com/documentation/fastcgi/ How to use Django with FastCGI]

继续研究尝试 ::-- ZoomQuiet [DateTime(2007-03-06T14:14:46Z)] TableOfContents

1. apache+fastcgi

1.1. 准备

  • 因为需要将 SVN 通过 HTTP 进行发布,所以 Lighttpd 无法进行转移到 apache22

{{{#确保以下模块安装成功 LoadModule dav_module libexec/apache22/mod_dav.so LoadModule dav_svn_module libexec/apache22/mod_dav_svn.so LoadModule authz_svn_module libexec/apache22/mod_authz_svn.so }}}

  • 配置apache

    <VirtualHost 210.192.102.145:80>
        ServerName obp.zoomquiet.org
        DocumentRoot /path/to/web/site/root/htdocs
        <Directory "/path/to/web/site/root/htdocs">
           Options Indexes FollowSymLinks
           AllowOverride None
           Order allow,deny
           Allow from all
        </Directory>   
    
        #Zoomq::070306 for SVN repos
        <Location /svn>  
            DAV svn
            SVNParentPath /usr/local/repos
            # our access control policy
            AuthzSVNAccessFile /usr/local/repos/matter/conf/authz.cfg
            # try anonymous access first, resort to real 
            # authentication if necessary.
            Satisfy Any
            Require valid-user
            # how to authenticate a user
            AuthType Basic
            AuthName "zoomquiet.org repository"
            AuthUserFile /usr/local/repos/svn.htpasswd
            SVNIndexXSLT "/svnindex.xsl"
        </Location>
    </VirtualHost>

1.2. Django 方式

1.3. 51boo方式

  • 参考 [:ObpLatform/2007-02-24:limodou的配置]

2. 反馈

PageComment2

ObpLatform/2007-03-06 (last edited 2009-12-25 07:15:49 by localhost)