~ubuntu-branches/ubuntu/saucy/apache2/saucy

« back to all changes in this revision

Viewing changes to debian/config-sites/default

  • Committer: Bazaar Package Importer
  • Author(s): Thom May
  • Date: 2004-10-13 19:46:10 UTC
  • Revision ID: james.westby@ubuntu.com-20041013194610-ccvqcz8vflh5zqrm
Tags: 2.0.50-12ubuntu4
Security Release. Patch from upstream for the following:
CAN-2004-0885SSLCypherSuite can be bypassed during renegotiation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<VirtualHost *>
 
2
        ServerAdmin ::SERVERADMIN::
 
3
        ServerName ::SERVERNAME::
 
4
        
 
5
        DocumentRoot /var/www/::VHOSTNAME::/htdocs-::PORT::
 
6
        <Directory />
 
7
                Options FollowSymLinks
 
8
                AllowOverride None
 
9
        </Directory>
 
10
        <Directory /var/www/::VHOSTNAME::/htdocs-::PORT::>
 
11
                Options Indexes FollowSymLinks
 
12
                AllowOverride None
 
13
                Order allow,deny
 
14
                allow from all
 
15
        </Directory>
 
16
 
 
17
        ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/::VHOSTNAME::-::PORT::
 
18
        <Directory "/usr/lib/cgi-bin/::VHOSTNAME::-::PORT::">
 
19
                AllowOverride None
 
20
                Options None
 
21
                Order allow,deny
 
22
                Allow from all
 
23
        </Directory>
 
24
        <Directory "/usr/lib/cgi-bin">
 
25
                AllowOverride None
 
26
                Options FollowSymLinks ExecCGI
 
27
                Order allow,deny
 
28
                Allow from all
 
29
        </Directory>
 
30
 
 
31
        ErrorLog /var/log/apache2/::VHOSTNAME::/logs/error.log-::PORT::
 
32
 
 
33
        # Possible values include: debug, info, notice, warn, error, crit,
 
34
        # alert, emerg.
 
35
        LogLevel warn
 
36
 
 
37
        CustomLog /var/log/apache2/::VHOSTNAME::/logs/access.log-::PORT:: combined
 
38
        ServerSignature On
 
39
        
 
40
        Alias /icons/ "/usr/share/apache2/icons/"
 
41
        Alias /manual/ "/usr/share/doc/apache2-doc/manual/"
 
42
        <Directory "/usr/share/apache2/icons">
 
43
            Options Indexes MultiViews
 
44
            AllowOverride None
 
45
            Order allow,deny
 
46
            Allow from all
 
47
        </Directory>
 
48
</VirtualHost>