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

322 by mattgiuca
Added doc/setup - a setup guide specific to our configuration. This is the
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 *>
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
8
    DocumentRoot /usr/local/share/ivle/www
322 by mattgiuca
Added doc/setup - a setup guide specific to our configuration. This is the
9
    <Directory />
10
        Options FollowSymLinks
11
        AllowOverride None
12
    </Directory>
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
13
    <Directory "/usr/local/share/ivle/www/">
322 by mattgiuca
Added doc/setup - a setup guide specific to our configuration. This is the
14
        AllowOverride None
15
        Order allow,deny
16
        allow from all
17
        SetHandler mod_python
1080 by me at id
doc/setup/ivle(-both).conf: Set PythonHandler to ivle.dispatch.
18
        PythonHandler ivle.dispatch
322 by mattgiuca
Added doc/setup - a setup guide specific to our configuration. This is the
19
        #PythonDebug On
20
        Options FollowSymLinks
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
21
        PythonOption mod_python.file_session.database_directory /var/lib/ivle/sessions
934 by wagrant
doc/setup/ivle(-both).conf: Set the mod_python cookie name to 'ivle'.
22
        PythonOption mod_python.session.cookie_name ivle
322 by mattgiuca
Added doc/setup - a setup guide specific to our configuration. This is the
23
    </Directory>
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
24
    <Directory "/usr/local/share/ivle/www/media">
322 by mattgiuca
Added doc/setup - a setup guide specific to our configuration. This is the
25
        SetHandler None
26
    </Directory>
1079 by William Grant
Merge setup-refactor branch. This completely breaks existing installations;
27
    <Directory "/usr/local/share/ivle/www/php">
459 by drtomc
ivle.conf: Add some php handling magic.
28
        SetHandler None
29
    </Directory>
322 by mattgiuca
Added doc/setup - a setup guide specific to our configuration. This is the
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>