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

« back to all changes in this revision

Viewing changes to doc/setup/ivle-both.conf

  • Committer: mattgiuca
  • Date: 2008-02-03 04:06:38 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:381
media/browser/listing.js: Replaced table-based layout in file listing with
    div-based. (This was previously more convenient, but a div-based layout
    now makes sense for the fixed page size, and of course is much better
    suited to CSS manipulation).
media/browser/browser.css: Fixed up the inner divs of the file listing. Now
    there is a "middle" div which has a full canvas height (except the top
    headers and status bar). The contents of the file table are now
    overflow-scrolled. This means the outer page will never scroll, only the
    inner file table. Tested and works on both tables that are too small and
    tables that are too big for the canvas. Nice :)

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
 
    ServerName localhost
10
 
    ServerName public.localhost
11
 
    <Directory />
12
 
        Options FollowSymLinks
13
 
        AllowOverride None
14
 
    </Directory>
15
 
    <Directory "/opt/ivle/www/">
16
 
        AllowOverride None
17
 
        Order allow,deny
18
 
        allow from all
19
 
        SetHandler mod_python
20
 
        PythonHandler dispatch
21
 
        #PythonDebug On
22
 
        Options FollowSymLinks
23
 
        PythonOption mod_python.file_session.database_directory /home/informatics/sessions
24
 
    </Directory>
25
 
    <Directory "/opt/ivle/www/media">
26
 
        SetHandler None
27
 
    </Directory>
28
 
    <Directory "/opt/ivle/www/php">
29
 
        SetHandler None
30
 
    </Directory>
31
 
 
32
 
    ErrorLog /var/log/apache2/error.log
33
 
 
34
 
    # Possible values include: debug, info, notice, warn, error, crit,
35
 
    # alert, emerg.
36
 
    LogLevel warn
37
 
 
38
 
    CustomLog /var/log/apache2/access.log combined
39
 
    ServerSignature On
40
 
</VirtualHost>
41
 
 
42
 
<VirtualHost *>
43
 
  ServerName svn.localhost
44
 
  <Location />
45
 
    DAV svn
46
 
    SVNParentPath /home/informatics/repositories
47
 
    AuthzSVNAccessFile /opt/ivle/svn/svn.conf
48
 
    Require valid-user
49
 
    AuthType Basic
50
 
    AuthName "Subversion repository"
51
 
    AuthUserFile /opt/ivle/svn/ivle.auth
52
 
  </Location>
53
 
</VirtualHost>
54