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

« back to all changes in this revision

Viewing changes to doc/setup/ivle.conf

  • Committer: William Grant
  • Date: 2009-01-19 23:29:19 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: grantw@unimelb.edu.au-20090119232919-4a6goyk6u1u1m58c
ivle.pulldown_subj: Use Storm, and kill ivle.db dependency. This means we use
    unicodes everywhere, so the pulldown module API has changed slightly.

ivle.pulldown_subj.dummy_subj: Return unicodes, not strs.

bin/ivle-enrolallusers: Remove ivle.db dependency, give enrol_user a store,
    and actually use the current year if one is not specified.

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 /opt/ivle/www
 
8
    DocumentRoot /usr/local/share/ivle/www
9
9
    <Directory />
10
10
        Options FollowSymLinks
11
11
        AllowOverride None
12
12
    </Directory>
13
 
    <Directory "/opt/ivle/www/">
 
13
    <Directory "/usr/local/share/ivle/www/">
14
14
        AllowOverride None
15
15
        Order allow,deny
16
16
        allow from all
17
17
        SetHandler mod_python
18
 
        PythonHandler dispatch
 
18
        PythonHandler ivle.dispatch
19
19
        #PythonDebug On
20
20
        Options FollowSymLinks
21
 
        PythonOption mod_python.file_session.database_directory /home/informatics/sessions
 
21
        PythonOption mod_python.file_session.database_directory /var/lib/ivle/sessions
 
22
        PythonOption mod_python.session.cookie_name ivle
22
23
    </Directory>
23
 
    <Directory "/opt/ivle/www/media">
 
24
    <Directory "/usr/local/share/ivle/www/media">
24
25
        SetHandler None
25
26
    </Directory>
26
 
    <Directory "/opt/ivle/www/php">
 
27
    <Directory "/usr/local/share/ivle/www/php">
27
28
        SetHandler None
28
29
    </Directory>
29
30