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

« back to all changes in this revision

Viewing changes to doc/setup/ivle.conf

  • Committer: mattgiuca
  • Date: 2008-08-18 12:15:25 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1027
Tutorial: Added new feature - previous attempt viewing. Allows users to see
    code they have previously submitted to tutorials.
    A new button ("View previous attempts") appears on each exercise box.
    This uses the getattempts and getattempt Ajax services checked in
    previously.
Note once again: Students are not (for the moment) able to see deactivated
attempts (this is a conservative approach - the ability to see deactivated
attempts can be turned on by setting HISTORY_ALLOW_INACTIVE = True in
tutorialservice).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Custom IVLE Apache config script
2
 
:q
3
2
# Configures IVLE at the root of the site.
4
 
NameVirtualHost *:80
 
3
NameVirtualHost *
5
4
ServerAdmin ADMIN@EXAMPLE.COM
6
5
ServerName IVLE.EXAMPLE.COM
7
6
 
8
 
<VirtualHost *:80>
9
 
    DocumentRoot /usr/local/share/ivle/www
 
7
<VirtualHost *>
 
8
    DocumentRoot /opt/ivle/www
10
9
    <Directory />
11
10
        Options FollowSymLinks
12
11
        AllowOverride None
13
12
    </Directory>
14
 
    <Directory "/usr/local/share/ivle/www/">
 
13
    <Directory "/opt/ivle/www/">
15
14
        AllowOverride None
16
15
        Order allow,deny
17
16
        allow from all
18
17
        SetHandler mod_python
19
 
        PythonHandler ivle.dispatch
 
18
        PythonHandler dispatch
20
19
        #PythonDebug On
21
20
        Options FollowSymLinks
22
 
        PythonOption mod_python.file_session.database_directory /var/lib/ivle/sessions
 
21
        PythonOption mod_python.file_session.database_directory /home/informatics/sessions
23
22
        PythonOption mod_python.session.cookie_name ivle
24
23
    </Directory>
 
24
    <Directory "/opt/ivle/www/media">
 
25
        SetHandler None
 
26
    </Directory>
 
27
    <Directory "/opt/ivle/www/php">
 
28
        SetHandler None
 
29
    </Directory>
25
30
 
26
31
    ErrorLog /var/log/apache2/error.log
27
32