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

« back to all changes in this revision

Viewing changes to doc/setup/ivle.conf

  • Committer: mattgiuca
  • Date: 2008-01-31 01:10:29 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:344
dispatch/ivle CSS foo.
The IVLE header is now a fixed height in em (previously was just intrinsic
    height).
This fixes the "tabs sometimes don't line up with the base line" display
problem, and also makes it much easier to add fixed or absolute content on the
rest of the page.

This was done by separating the tabs out into a separate div and making that
absolutely positioned. Now the header is exactly 5.3em.

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
    </Directory>
 
22
    <Directory "/opt/ivle/www/media">
 
23
        SetHandler None
 
24
    </Directory>
 
25
 
 
26
    ErrorLog /var/log/apache2/error.log
 
27
 
 
28
    # Possible values include: debug, info, notice, warn, error, crit,
 
29
    # alert, emerg.
 
30
    LogLevel warn
 
31
 
 
32
    CustomLog /var/log/apache2/access.log combined
 
33
    ServerSignature On
 
34
</VirtualHost>