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

« back to all changes in this revision

Viewing changes to doc/setup/ivle.conf

Tutorial: Added a message, "no attempts have been made to this exercise",
    rather than displaying the empty box and View button.
    As a contingency, also fixed the View button - won't crash if there are no
    items in the list.

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