~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to debian/config-sites/default

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

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>