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

525 by drtomc
A sample apache config containing both ivle and svn configuration.
1
# Custom IVLE Apache config script
2
# Configures IVLE at the root of the site.
1092.1.29 by William Grant
Update docs to comply with more recent Debian standards, and IVLE changes.
3
NameVirtualHost *:80
525 by drtomc
A sample apache config containing both ivle and svn configuration.
4
ServerAdmin ADMIN@EXAMPLE.COM
5
ServerName IVLE.EXAMPLE.COM
6
1092.1.29 by William Grant
Update docs to comply with more recent Debian standards, and IVLE changes.
7
<VirtualHost *:80>
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
8
    DocumentRoot /usr/local/share/ivle/www
525 by drtomc
A sample apache config containing both ivle and svn configuration.
9
    ServerName localhost
1092.1.29 by William Grant
Update docs to comply with more recent Debian standards, and IVLE changes.
10
    ServerAlias public.localhost
525 by drtomc
A sample apache config containing both ivle and svn configuration.
11
    <Directory />
12
        Options FollowSymLinks
13
        AllowOverride None
14
    </Directory>
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
15
    <Directory "/usr/local/share/ivle/www/">
525 by drtomc
A sample apache config containing both ivle and svn configuration.
16
        AllowOverride None
17
        Order allow,deny
18
        allow from all
19
        SetHandler mod_python
1080 by me at id
doc/setup/ivle(-both).conf: Set PythonHandler to ivle.dispatch.
20
        PythonHandler ivle.dispatch
525 by drtomc
A sample apache config containing both ivle and svn configuration.
21
        #PythonDebug On
22
        Options FollowSymLinks
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
23
        PythonOption mod_python.file_session.database_directory /var/lib/ivle/sessions
934 by wagrant
doc/setup/ivle(-both).conf: Set the mod_python cookie name to 'ivle'.
24
        PythonOption mod_python.session.cookie_name ivle
525 by drtomc
A sample apache config containing both ivle and svn configuration.
25
    </Directory>
26
27
    ErrorLog /var/log/apache2/error.log
28
29
    # Possible values include: debug, info, notice, warn, error, crit,
30
    # alert, emerg.
31
    LogLevel warn
32
33
    CustomLog /var/log/apache2/access.log combined
34
    ServerSignature On
35
</VirtualHost>
36
1092.1.29 by William Grant
Update docs to comply with more recent Debian standards, and IVLE changes.
37
<VirtualHost *:80>
525 by drtomc
A sample apache config containing both ivle and svn configuration.
38
  ServerName svn.localhost
953 by wagrant
Add users/ to the front of all Subversion repositories, to clear the
39
  <Location /users>
525 by drtomc
A sample apache config containing both ivle and svn configuration.
40
    DAV svn
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
41
    SVNParentPath /var/lib/ivle/svn/repositories/users
42
    AuthzSVNAccessFile /var/lib/ivle/svn/svn.conf
525 by drtomc
A sample apache config containing both ivle and svn configuration.
43
    Require valid-user
44
    AuthType Basic
45
    AuthName "Subversion repository"
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
46
    AuthUserFile /var/lib/ivle/svn/ivle.auth
525 by drtomc
A sample apache config containing both ivle and svn configuration.
47
  </Location>
989 by dcoles
Groups: Added userservice/assign_group call. This allows a user with the
48
  <Location /groups>
49
    DAV svn
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
50
    SVNParentPath /var/lib/ivle/svn/repositories/groups
51
    AuthzSVNAccessFile /var/lib/ivle/svn/svn-group.conf
989 by dcoles
Groups: Added userservice/assign_group call. This allows a user with the
52
    Require valid-user
53
    AuthType Basic
54
    AuthName "Subversion repository"
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
55
    AuthUserFile /var/lib/ivle/svn/ivle.auth
989 by dcoles
Groups: Added userservice/assign_group call. This allows a user with the
56
  </Location>
525 by drtomc
A sample apache config containing both ivle and svn configuration.
57
</VirtualHost>
58