~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>
1099.1.154 by William Grant
Update example Apache config to use an entirely virtual hierarchy, placing
15
16
    <Location />
525 by drtomc
A sample apache config containing both ivle and svn configuration.
17
        Order allow,deny
1099.1.154 by William Grant
Update example Apache config to use an entirely virtual hierarchy, placing
18
        Allow from all
525 by drtomc
A sample apache config containing both ivle and svn configuration.
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
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
22
        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'.
23
        PythonOption mod_python.session.cookie_name ivle
1099.1.154 by William Grant
Update example Apache config to use an entirely virtual hierarchy, placing
24
    </Location>
525 by drtomc
A sample apache config containing both ivle and svn configuration.
25
26
    ErrorLog /var/log/apache2/error.log
27
28
    # Possible values include: debug, info, notice, warn, error, crit,
29
    # alert, emerg.
30
    LogLevel warn
31
32
    CustomLog /var/log/apache2/access.log combined
33
    ServerSignature On
34
</VirtualHost>
35
1092.1.29 by William Grant
Update docs to comply with more recent Debian standards, and IVLE changes.
36
<VirtualHost *:80>
525 by drtomc
A sample apache config containing both ivle and svn configuration.
37
  ServerName svn.localhost
953 by wagrant
Add users/ to the front of all Subversion repositories, to clear the
38
  <Location /users>
525 by drtomc
A sample apache config containing both ivle and svn configuration.
39
    DAV svn
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
40
    SVNParentPath /var/lib/ivle/svn/repositories/users
41
    AuthzSVNAccessFile /var/lib/ivle/svn/svn.conf
525 by drtomc
A sample apache config containing both ivle and svn configuration.
42
    Require valid-user
43
    AuthType Basic
44
    AuthName "Subversion repository"
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
45
    AuthUserFile /var/lib/ivle/svn/ivle.auth
525 by drtomc
A sample apache config containing both ivle and svn configuration.
46
  </Location>
989 by dcoles
Groups: Added userservice/assign_group call. This allows a user with the
47
  <Location /groups>
48
    DAV svn
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
49
    SVNParentPath /var/lib/ivle/svn/repositories/groups
50
    AuthzSVNAccessFile /var/lib/ivle/svn/svn-group.conf
989 by dcoles
Groups: Added userservice/assign_group call. This allows a user with the
51
    Require valid-user
52
    AuthType Basic
53
    AuthName "Subversion repository"
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
54
    AuthUserFile /var/lib/ivle/svn/ivle.auth
989 by dcoles
Groups: Added userservice/assign_group call. This allows a user with the
55
  </Location>
525 by drtomc
A sample apache config containing both ivle and svn configuration.
56
</VirtualHost>
57