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

« back to all changes in this revision

Viewing changes to doc/setup/ivle.conf

Added module ivle.config, which takes care of some work interfacing with
    configobj, including searching for the file and opening the object.
ivle.conf.conf now uses this instead of having its own search.

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