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

« back to all changes in this revision

Viewing changes to doc/setup/ivle.conf

  • Committer: Matt Giuca
  • Date: 2009-12-01 04:27:58 UTC
  • mfrom: (1164.2.46 sphinx-docs)
  • Revision ID: matt.giuca@gmail.com-20091201042758-wuxd9bdec00c283i
Merged sphinx-docs branch. This adds Sphinx documentation for the entire IVLE system (for system administrators and developers), and removes all of our random old document files (all either irrelevant, or moved into the Sphinx docs nicely). Currently incomplete, but ready to merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Custom IVLE Apache config script
2
 
# Configures IVLE at the root of the site.
3
 
NameVirtualHost *
4
 
ServerAdmin ADMIN@EXAMPLE.COM
5
 
ServerName IVLE.EXAMPLE.COM
6
 
 
7
 
<VirtualHost *>
8
 
    DocumentRoot /opt/ivle/www
9
 
    <Directory />
10
 
        Options FollowSymLinks
11
 
        AllowOverride None
12
 
    </Directory>
13
 
    <Directory "/opt/ivle/www/">
14
 
        AllowOverride None
15
 
        Order allow,deny
16
 
        allow from all
17
 
        SetHandler mod_python
18
 
        PythonHandler dispatch
19
 
        #PythonDebug On
20
 
        Options FollowSymLinks
21
 
        PythonOption mod_python.file_session.database_directory /home/informatics/sessions
22
 
        PythonOption mod_python.session.cookie_name ivle
23
 
    </Directory>
24
 
    <Directory "/opt/ivle/www/media">
25
 
        SetHandler None
26
 
    </Directory>
27
 
    <Directory "/opt/ivle/www/php">
28
 
        SetHandler None
29
 
    </Directory>
30
 
 
31
 
    ErrorLog /var/log/apache2/error.log
32
 
 
33
 
    # Possible values include: debug, info, notice, warn, error, crit,
34
 
    # alert, emerg.
35
 
    LogLevel warn
36
 
 
37
 
    CustomLog /var/log/apache2/access.log combined
38
 
    ServerSignature On
39
 
</VirtualHost>