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

« back to all changes in this revision

Viewing changes to doc/setup/ivle.conf

  • Committer: me at id
  • Date: 2009-01-15 05:45:05 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:branches%2Fstorm:1160
ivle.database.User: Order 'enrolments' the same way as 'active_enrolments'.

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
 
    </Directory>
22
 
    <Directory "/opt/ivle/www/media">
 
21
        PythonOption mod_python.file_session.database_directory /var/lib/ivle/sessions
 
22
        PythonOption mod_python.session.cookie_name ivle
 
23
    </Directory>
 
24
    <Directory "/usr/local/share/ivle/www/media">
 
25
        SetHandler None
 
26
    </Directory>
 
27
    <Directory "/usr/local/share/ivle/www/php">
23
28
        SetHandler None
24
29
    </Directory>
25
30