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

« back to all changes in this revision

Viewing changes to tests/bug-06.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
8
8
 
9
9
## bind to localhost (default: all interfaces)
10
10
server.bind                = "localhost"
11
 
server.errorlog            = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.error.log"
 
11
server.errorlog            = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.error.log"
12
12
server.name                = "www.example.org"
13
13
server.tag                 = "Apache 1.3.29"
14
14
 
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
setenv.add-environment      = ( "TRAC_ENV" => "foo")
90
90
                                    "host" => "127.0.0.1",
91
91
                                    "port" => 1026,
92
92
#                                   "mode" => "authorizer",
93
 
#                                   "docroot" => "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/",
 
93
#                                   "docroot" => env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/",
94
94
                                  )
95
95
                                )
96
96
                              )
106
106
ssl.pemfile                 = "server.pem"
107
107
 
108
108
auth.backend                = "plain"
109
 
auth.backend.plain.userfile = "@SRCDIR@/tmp/lighttpd/lighttpd.user"
 
109
auth.backend.plain.userfile = env.SRCDIR + "/tmp/lighttpd/lighttpd.user"
110
110
auth.backend.plain.groupfile = "lighttpd.group"
111
111
 
112
112
auth.backend.ldap.hostname  = "localhost"
149
149
status.config-url           = "/server-config"
150
150
 
151
151
simple-vhost.document-root  = "pages"
152
 
simple-vhost.server-root    = "@SRCDIR@/tmp/lighttpd/servers/"
 
152
simple-vhost.server-root    = env.SRCDIR + "/tmp/lighttpd/servers/"
153
153
simple-vhost.default-host   = "www.example.org"
154
154
 
155
155
$HTTP["host"] == "vvv.example.org" {
156
 
  server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/"
 
156
  server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
157
157
}
158
158
 
159
159
$HTTP["host"] == "zzz.example.org" {
160
 
  server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/"
 
160
  server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
161
161
  server.name = "zzz.example.org"
162
162
}
163
163