Browse Source
* next commit fixes the bug From: Stefan Bühler <stbuehler@web.de> git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2897 152afb58-edef-0310-8abb-c4023f1b3aa9svn/tags/lighttpd-1.4.33
5 changed files with 98 additions and 22 deletions
@ -0,0 +1,29 @@
|
||||
debug.log-request-handling = "enable" |
||||
debug.log-response-header = "disable" |
||||
debug.log-request-header = "disable" |
||||
|
||||
## bind to localhost (default: all interfaces) |
||||
server.bind = "localhost" |
||||
server.errorlog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.error.log" |
||||
server.breakagelog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.breakage.log" |
||||
server.name = "www.example.org" |
||||
|
||||
server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/" |
||||
server.pid-file = env.SRCDIR + "/tmp/lighttpd/lighttpd.pid" |
||||
|
||||
## bind to port (default: 80) |
||||
server.port = 2048 |
||||
|
||||
|
||||
|
||||
######################## MODULE CONFIG ############################ |
||||
|
||||
server.modules = ( "mod_simple_vhost" ) |
||||
|
||||
|
||||
# docroot depending on request path |
||||
$HTTP["url"] =~ "^/a/" { |
||||
server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/a.example.org/pages/" |
||||
} else $HTTP["url"] =~ "^/b/" { |
||||
server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/b.example.org/pages/" |
||||
} |
@ -0,0 +1,37 @@
|
||||
#!/usr/bin/env perl |
||||
BEGIN { |
||||
# add current source dir to the include-path |
||||
# we need this for make distcheck |
||||
(my $srcdir = $0) =~ s,/[^/]+$,/,; |
||||
unshift @INC, $srcdir; |
||||
} |
||||
|
||||
use strict; |
||||
use IO::Socket; |
||||
use Test::More tests => 4; |
||||
use LightyTest; |
||||
|
||||
my $tf = LightyTest->new(); |
||||
my $t; |
||||
|
||||
$tf->{CONFIGFILE} = 'mod-simplevhost.conf'; |
||||
|
||||
ok($tf->start_proc == 0, "Starting lighttpd") or die(); |
||||
|
||||
$t->{REQUEST} = ( <<EOF |
||||
GET /a/a.html HTTP/1.0 |
||||
Host: www.example.org |
||||
EOF |
||||
); |
||||
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ]; |
||||
ok($tf->handle_http($t) == 0, 'Check /a/a.html path'); |
||||
|
||||
$t->{REQUEST} = ( <<EOF |
||||
GET /b/b.html HTTP/1.0 |
||||
Host: www.example.org |
||||
EOF |
||||
); |
||||
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ]; |
||||
ok($tf->handle_http($t) == 0, 'Check /b/b.html path'); |
||||
|
||||
ok($tf->stop_proc == 0, "Stopping lighttpd"); |
Loading…
Reference in new issue