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

« back to all changes in this revision

Viewing changes to tests/fastcgi-10.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:
1
 
server.document-root         = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/"
2
 
server.pid-file              = "@SRCDIR@/tmp/lighttpd/lighttpd.pid"
 
1
server.document-root         = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
 
2
server.pid-file              = env.SRCDIR + "/tmp/lighttpd/lighttpd.pid"
3
3
 
4
4
## bind to port (default: 80)
5
5
server.port                 = 2048
6
6
 
7
7
## bind to localhost (default: all interfaces)
8
8
server.bind                = "localhost"
9
 
server.errorlog            = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.error.log"
 
9
server.errorlog            = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.error.log"
10
10
server.name                = "www.example.org"
11
11
server.tag                 = "Apache 1.3.29"
12
12
 
44
44
######################## MODULE CONFIG ############################
45
45
 
46
46
 
47
 
accesslog.filename          = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.access.log"
 
47
accesslog.filename          = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.access.log"
48
48
 
49
49
mimetype.assign             = ( ".png"  => "image/png", 
50
50
                                ".jpg"  => "image/jpeg",
62
62
                                ".c"    => "text/plain",
63
63
                                ".conf" => "text/plain" )
64
64
 
65
 
compress.cache-dir          = "@SRCDIR@/tmp/lighttpd/cache/compress/"
 
65
compress.cache-dir          = env.SRCDIR + "/tmp/lighttpd/cache/compress/"
66
66
compress.filetype           = ("text/plain", "text/html")
67
67
 
68
68
fastcgi.debug               = 0
85
85
ssl.pemfile                 = "server.pem"
86
86
 
87
87
auth.backend                = "plain"
88
 
auth.backend.plain.userfile = "@SRCDIR@/tmp/lighttpd/lighttpd.user"
 
88
auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
89
89
auth.backend.plain.groupfile = "lighttpd.group"
90
90
 
91
91
auth.backend.ldap.hostname  = "localhost"
128
128
status.config-url           = "/server-config"
129
129
 
130
130
$HTTP["host"] == "vvv.example.org" {
131
 
  server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/"
 
131
  server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
132
132
}
133
133
 
134
134
$HTTP["host"] == "zzz.example.org" {
135
 
  server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/"
 
135
  server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
136
136
  server.name = "zzz.example.org"
137
137
}
138
138