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

« back to all changes in this revision

Viewing changes to tests/fastcgi-13.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
debug.log-request-header   = "enable"
5
5
debug.log-response-header  = "enable"
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
 
59
59
######################## MODULE CONFIG ############################
60
60
 
61
61
 
62
 
accesslog.filename          = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.access.log"
 
62
accesslog.filename          = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.access.log"
63
63
 
64
64
mimetype.assign             = ( ".png"  => "image/png", 
65
65
                                ".jpg"  => "image/jpeg",
77
77
                                ".c"    => "text/plain",
78
78
                                ".conf" => "text/plain" )
79
79
 
80
 
compress.cache-dir          = "@SRCDIR@/tmp/lighttpd/cache/compress/"
 
80
compress.cache-dir          = env.SRCDIR + "/tmp/lighttpd/cache/compress/"
81
81
compress.filetype           = ("text/plain", "text/html")
82
82
 
83
83
fastcgi.debug               = 0
102
102
ssl.pemfile                 = "server.pem"
103
103
 
104
104
auth.backend                = "plain"
105
 
auth.backend.plain.userfile = "@SRCDIR@/tmp/lighttpd/lighttpd.user"
 
105
auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
106
106
auth.backend.plain.groupfile = "lighttpd.group"
107
107
 
108
108
auth.backend.ldap.hostname  = "localhost"
145
145
status.config-url           = "/server-config"
146
146
 
147
147
$HTTP["host"] == "vvv.example.org" {
148
 
  server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/"
 
148
  server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
149
149
}
150
150
 
151
151
$HTTP["host"] == "zzz.example.org" {
152
 
  server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/"
 
152
  server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
153
153
  server.name = "zzz.example.org"
154
154
}
155
155