File: default

package info (click to toggle)
apache2 2.0.54-5sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 8,260 kB
  • ctags: 176
  • sloc: sh: 533; makefile: 367; python: 209; perl: 127
file content (48 lines) | stat: -rw-r--r-- 1,228 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<VirtualHost *>
	ServerAdmin ::SERVERADMIN::
	ServerName ::SERVERNAME::
	
	DocumentRoot /var/www/::VHOSTNAME::/htdocs-::PORT::
	<Directory />
		Options FollowSymLinks
		AllowOverride None
	</Directory>
	<Directory /var/www/::VHOSTNAME::/htdocs-::PORT::>
		Options Indexes FollowSymLinks
		AllowOverride None
		Order allow,deny
		allow from all
	</Directory>

	ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/::VHOSTNAME::-::PORT::
	<Directory "/usr/lib/cgi-bin/::VHOSTNAME::-::PORT::">
		AllowOverride None
		Options None
		Order allow,deny
		Allow from all
	</Directory>
	<Directory "/usr/lib/cgi-bin">
		AllowOverride None
		Options FollowSymLinks ExecCGI
		Order allow,deny
		Allow from all
	</Directory>

	ErrorLog /var/log/apache2/::VHOSTNAME::/logs/error.log-::PORT::

	# Possible values include: debug, info, notice, warn, error, crit,
	# alert, emerg.
	LogLevel warn

	CustomLog /var/log/apache2/::VHOSTNAME::/logs/access.log-::PORT:: combined
	ServerSignature On
	
	Alias /icons/ "/usr/share/apache2/icons/"
	Alias /manual/ "/usr/share/doc/apache2-doc/manual/"
	<Directory "/usr/share/apache2/icons">
	    Options Indexes MultiViews
	    AllowOverride None
	    Order allow,deny
	    Allow from all
	</Directory>
</VirtualHost>