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

« back to all changes in this revision

Viewing changes to doc/setup/ivle-both.conf

  • Committer: dcoles
  • Date: 2008-07-03 04:20:54 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:803
Setup: Modularised setup.py so it is now no longer over 1000 lines. This should 
allow us to get in there and tidy up each module much easier. Also removed 
updatejails since this functionality seems to be duplicated with remakeuser.py 
and remakealluser.py scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
ServerName IVLE.EXAMPLE.COM
6
6
 
7
7
<VirtualHost *>
8
 
    DocumentRoot /usr/local/share/ivle/www
 
8
    DocumentRoot /opt/ivle/www
9
9
    ServerName localhost
10
10
    ServerName public.localhost
11
11
    <Directory />
12
12
        Options FollowSymLinks
13
13
        AllowOverride None
14
14
    </Directory>
15
 
    <Directory "/usr/local/share/ivle/www/">
 
15
    <Directory "/opt/ivle/www/">
16
16
        AllowOverride None
17
17
        Order allow,deny
18
18
        allow from all
19
19
        SetHandler mod_python
20
 
        PythonHandler ivle.dispatch
 
20
        PythonHandler dispatch
21
21
        #PythonDebug On
22
22
        Options FollowSymLinks
23
 
        PythonOption mod_python.file_session.database_directory /var/lib/ivle/sessions
24
 
        PythonOption mod_python.session.cookie_name ivle
 
23
        PythonOption mod_python.file_session.database_directory /home/informatics/sessions
25
24
    </Directory>
26
 
    <Directory "/usr/local/share/ivle/www/media">
 
25
    <Directory "/opt/ivle/www/media">
27
26
        SetHandler None
28
27
    </Directory>
29
 
    <Directory "/usr/local/share/ivle/www/php">
 
28
    <Directory "/opt/ivle/www/php">
30
29
        SetHandler None
31
30
    </Directory>
32
31
 
42
41
 
43
42
<VirtualHost *>
44
43
  ServerName svn.localhost
45
 
  <Location /users>
46
 
    DAV svn
47
 
    SVNParentPath /var/lib/ivle/svn/repositories/users
48
 
    AuthzSVNAccessFile /var/lib/ivle/svn/svn.conf
49
 
    Require valid-user
50
 
    AuthType Basic
51
 
    AuthName "Subversion repository"
52
 
    AuthUserFile /var/lib/ivle/svn/ivle.auth
53
 
  </Location>
54
 
  <Location /groups>
55
 
    DAV svn
56
 
    SVNParentPath /var/lib/ivle/svn/repositories/groups
57
 
    AuthzSVNAccessFile /var/lib/ivle/svn/svn-group.conf
58
 
    Require valid-user
59
 
    AuthType Basic
60
 
    AuthName "Subversion repository"
61
 
    AuthUserFile /var/lib/ivle/svn/ivle.auth
 
44
  <Location />
 
45
    DAV svn
 
46
    SVNParentPath /home/informatics/repositories
 
47
    AuthzSVNAccessFile /opt/ivle/svn/svn.conf
 
48
    Require valid-user
 
49
    AuthType Basic
 
50
    AuthName "Subversion repository"
 
51
    AuthUserFile /opt/ivle/svn/ivle.auth
62
52
  </Location>
63
53
</VirtualHost>
64
54