~ubuntu-branches/ubuntu/hardy/lighttpd/hardy

« back to all changes in this revision

Viewing changes to tests/var-include.conf

  • Committer: Bazaar Package Importer
  • Author(s): Jeremie Corbier
  • Date: 2006-09-22 19:16:08 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060922191608-i9jngvf1wtf3j5rd
Tags: 1.4.12~20060907-1ubuntu1
Merge from debian unstable:
-> Keep the additional dependency on libterm-readline-perl-perl.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
debug.log-request-handling = "enable"
3
3
debug.log-condition-handling = "enable"
4
4
 
5
 
server.document-root         = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/"
6
 
server.pid-file              = "@SRCDIR@/tmp/lighttpd/lighttpd.pid"
 
5
server.document-root         = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
 
6
server.pid-file              = env.SRCDIR + "/tmp/lighttpd/lighttpd.pid"
7
7
 
8
8
## bind to port (default: 80)
9
9
server.port                 = 2048
10
10
 
11
11
## bind to localhost (default: all interfaces)
12
12
server.bind                = "localhost"
13
 
server.errorlog            = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.error.log"
 
13
server.errorlog            = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.error.log"
14
14
server.name                = "www.example.org"
15
15
server.tag                 = "Apache 1.3.29"
16
16
 
21
21
######################## MODULE CONFIG ############################
22
22
 
23
23
 
24
 
accesslog.filename          = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.access.log"
 
24
accesslog.filename          = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.access.log"
25
25
 
26
26
mimetype.assign             = ( ".html" => "text/html" )
27
27
 
28
28
url.redirect = ("^" => "/default")
29
29
 
30
30
$HTTP["host"] == "www.example.org" {
31
 
  server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/"
 
31
  server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
32
32
  server.name = "www.example.org"
33
33
  url.redirect = ("^" => "/redirect")
34
34
}
35
35
$HTTP["host"] == "test.example.org" {
36
 
  server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/"
 
36
  server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
37
37
  server.name = "test.example.org"
38
38
  var.myvar = "good"
39
39
  var.one = 1