~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to platform/config/svn-apache.conf

  • Committer: William Grant
  • Date: 2009-02-23 23:47:02 UTC
  • mfrom: (1099.1.211 new-dispatch)
  • Revision ID: grantw@unimelb.edu.au-20090223234702-db4b1llly46ignwo
Merge from lp:~ivle-dev/ivle/new-dispatch.

Pretty much everything changes. Reread the setup docs. Backup your databases.
Every file is now in a different installed location, the configuration system
is rewritten, the dispatch system is rewritten, URLs are different, the
database is different, worksheets and exercises are no longer on the
filesystem, we use a templating engine, jail service protocols are rewritten,
we don't repeat ourselves, we have authorization rewritten, phpBB is gone,
and probably lots of other things that I cannot remember.

This is certainly the biggest commit I have ever made, and hopefully
the largest I ever will.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
LoadModule auth_basic_module /usr/lib/apache2/modules/mod_auth_basic.so
2
 
LoadModule auth_digest_module /usr/lib/apache2/modules/mod_auth_digest.so
3
 
LoadModule authn_file_module /usr/lib/apache2/modules/mod_authn_file.so
4
 
LoadModule authz_host_module /usr/lib/apache2/modules/mod_authz_host.so
5
 
LoadModule authz_user_module /usr/lib/apache2/modules/mod_authz_user.so
6
 
LoadModule dav_module /usr/lib/apache2/modules/mod_dav.so
7
 
LoadModule dav_svn_module /usr/lib/apache2/modules/mod_dav_svn.so
8
 
LoadModule authz_svn_module /usr/lib/apache2/modules/mod_authz_svn.so
9
 
 
10
 
Listen 8088
11
 
ErrorLog /home/informatics/logs/error
12
 
LogLevel debug
13
 
PidFile /home/informatics/svn-apache.pid
14
 
 
15
 
ServerName svn.informatics.unimelb.edu.au
16
 
DocumentRoot /home/informatics/www
17
 
 
18
 
<Location />
19
 
    DAV svn
20
 
    SVNParentPath /home/informatics/svn
21
 
    AuthType Digest
22
 
    AuthName "informatics"
23
 
    AuthDigestProvider file
24
 
    AuthUserFile /home/informatics/conf/digest
25
 
    AuthBasicAuthoritative On
26
 
    AuthzSVNAccessFile /home/informatics/conf/svn-authz
27
 
    Require valid-user
28
 
</Location>