Changeset 640
- Timestamp:
- 08/29/2005 12:08:00 PM (3 years ago)
- Location:
- branches/lighttpd-merge-1.4.x/tests
- Files:
-
- 15 modified
-
LightyTest.pm (modified) (3 diffs)
-
Makefile.am (modified) (1 diff)
-
bug-06.conf (modified) (7 diffs)
-
bug-12.conf (modified) (7 diffs)
-
cleanup.sh (modified) (1 diff)
-
condition.conf (modified) (6 diffs)
-
fastcgi-10.conf (modified) (6 diffs)
-
fastcgi-13.conf (modified) (6 diffs)
-
fastcgi-auth.conf (modified) (7 diffs)
-
fastcgi-responder.conf (modified) (6 diffs)
-
lighttpd.conf (modified) (7 diffs)
-
mod-proxy.t (modified) (1 diff)
-
prepare.sh (modified) (3 diffs)
-
proxy.conf (modified) (7 diffs)
-
var-include.conf (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/lighttpd-merge-1.4.x/tests/LightyTest.pm
r623 r640 9 9 my $class = shift; 10 10 my $self = {}; 11 my $lpath; 11 12 12 13 $self->{CONFIGFILE} = 'lighttpd.conf'; 13 $self->{BASEDIR} = (defined $ENV{'top_builddir'} ? $ENV{'top_builddir'} : '..'); 14 $self->{SRCDIR} = (defined $ENV{'srcdir'} ? $ENV{'srcdir'} : '.'); 14 15 $lpath = (defined $ENV{'top_builddir'} ? $ENV{'top_builddir'} : '..'); 16 $lpath = `readlink -f '$lpath'`; 17 chomp $lpath; 18 $self->{BASEDIR} = $lpath; 19 20 $lpath = (defined $ENV{'srcdir'} ? $ENV{'srcdir'} : '.'); 21 # $lpath = `readlink -f '$lpath'`; 22 # chomp $lpath; 23 $self->{SRCDIR} = $lpath; 15 24 16 25 $self->{LIGHTTPD_PATH} = $self->{BASEDIR}.'/src/lighttpd'; 17 $self->{LIGHTTPD_PIDFILE} = '/tmp/lighttpd/lighttpd.pid';18 $self->{PIDOF_PIDFILE} = '/tmp/lighttpd/pidof.pid';26 $self->{LIGHTTPD_PIDFILE} = $self->{SRCDIR}.'/tmp/lighttpd/lighttpd.pid'; 27 $self->{PIDOF_PIDFILE} = $self->{SRCDIR}.'/tmp/lighttpd/pidof.pid'; 19 28 $self->{PORT} = 2048; 20 29 … … 64 73 # 65 74 66 my $pwd = `pwd`; 67 chomp($pwd); 68 unlink("/tmp/cfg.file"); 69 system("cat ".$self->{SRCDIR}."/".$self->{CONFIGFILE}.' | perl -pe "s#\@SRCDIR\@#'.$pwd.'/'.$self->{BASEDIR}.'/tests/#" > /tmp/cfg.file'); 75 unlink($self->{SRCDIR}."/tmp/cfg.file"); 76 system("cat ".$self->{SRCDIR}."/".$self->{CONFIGFILE}.' | perl -pe "s#\@SRCDIR\@#'.$self->{BASEDIR}.'/tests/#" > '.$self->{SRCDIR}.'/tmp/cfg.file'); 70 77 71 78 unlink($self->{LIGHTTPD_PIDFILE}); 72 79 if (1) { 73 system($self->{LIGHTTPD_PATH}." -f /tmp/cfg.file");80 system($self->{LIGHTTPD_PATH}." -f ".$self->{SRCDIR}."/tmp/cfg.file -m ".$self->{BASEDIR}."/src/.libs"); 74 81 select(undef, undef, undef, 0.1); 75 82 } else { 76 system("valgrind --tool=memcheck --show-reachable=yes --leak-check=yes --logfile=foo ".$self->{LIGHTTPD_PATH}." -D -f /tmp/cfg.file&");83 system("valgrind --tool=memcheck --show-reachable=yes --leak-check=yes --logfile=foo ".$self->{LIGHTTPD_PATH}." -D -f ".$self->{SRCDIR}."/tmp/cfg.file -m ".$self->{BASEDIR}."/src/.libs &"); 77 84 select(undef, undef, undef, 2); 78 85 } … … 81 88 # sleep(1); 82 89 83 unlink( "/tmp/cfg.file");90 unlink($self->{SRCDIR}."/tmp/cfg.file"); 84 91 85 92 # no pidfile, we failed -
branches/lighttpd-merge-1.4.x/tests/Makefile.am
r612 r640 1 1 # lighttpd.conf and conformance.pl expect this directory 2 testdir= /tmp/lighttpd/2 testdir=$(srcdir)/tmp/lighttpd/ 3 3 4 4 if CHECK_WITH_FASTCGI -
branches/lighttpd-merge-1.4.x/tests/bug-06.conf
r349 r640 1 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"2 server.pid-file = " /tmp/lighttpd/lighttpd.pid"1 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 2 server.pid-file = "@SRCDIR@/tmp/lighttpd/lighttpd.pid" 3 3 4 4 ## bind to port (default: 80) … … 9 9 ## bind to localhost (default: all interfaces) 10 10 server.bind = "localhost" 11 server.errorlog = " /tmp/lighttpd/logs/lighttpd.error.log"11 server.errorlog = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.error.log" 12 12 server.name = "www.example.org" 13 13 server.tag = "Apache 1.3.29" … … 60 60 61 61 62 accesslog.filename = " /tmp/lighttpd/logs/lighttpd.access.log"62 accesslog.filename = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.access.log" 63 63 64 64 mimetype.assign = ( ".png" => "image/png", … … 78 78 ".conf" => "text/plain" ) 79 79 80 compress.cache-dir = " /tmp/lighttpd/cache/compress/"80 compress.cache-dir = "@SRCDIR@/tmp/lighttpd/cache/compress/" 81 81 compress.filetype = ("text/plain", "text/html") 82 82 … … 91 91 "port" => 1026, 92 92 # "mode" => "authorizer", 93 # "docroot" => " /tmp/lighttpd/servers/www.example.org/pages/",93 # "docroot" => "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/", 94 94 ) 95 95 ) … … 107 107 108 108 auth.backend = "plain" 109 auth.backend.plain.userfile = " /tmp/lighttpd/lighttpd.user"109 auth.backend.plain.userfile = "@SRCDIR@/tmp/lighttpd/lighttpd.user" 110 110 auth.backend.plain.groupfile = "lighttpd.group" 111 111 … … 150 150 151 151 simple-vhost.document-root = "pages" 152 simple-vhost.server-root = " /tmp/lighttpd/servers/"152 simple-vhost.server-root = "@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 = " /tmp/lighttpd/servers/www.example.org/pages/"156 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 157 157 } 158 158 159 159 $HTTP["host"] == "zzz.example.org" { 160 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"160 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 161 161 server.name = "zzz.example.org" 162 162 } -
branches/lighttpd-merge-1.4.x/tests/bug-12.conf
r349 r640 1 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"2 server.pid-file = " /tmp/lighttpd/lighttpd.pid"1 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 2 server.pid-file = "@SRCDIR@/tmp/lighttpd/lighttpd.pid" 3 3 4 4 ## bind to port (default: 80) … … 9 9 ## bind to localhost (default: all interfaces) 10 10 server.bind = "localhost" 11 server.errorlog = " /tmp/lighttpd/logs/lighttpd.error.log"11 server.errorlog = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.error.log" 12 12 server.name = "www.example.org" 13 13 server.tag = "Apache 1.3.29" … … 62 62 63 63 64 accesslog.filename = " /tmp/lighttpd/logs/lighttpd.access.log"64 accesslog.filename = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.access.log" 65 65 66 66 mimetype.assign = ( ".png" => "image/png", … … 80 80 ".conf" => "text/plain" ) 81 81 82 compress.cache-dir = " /tmp/lighttpd/cache/compress/"82 compress.cache-dir = "@SRCDIR@/tmp/lighttpd/cache/compress/" 83 83 compress.filetype = ("text/plain", "text/html") 84 84 … … 93 93 "port" => 1026, 94 94 # "mode" => "authorizer", 95 # "docroot" => " /tmp/lighttpd/servers/www.example.org/pages/",95 # "docroot" => "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/", 96 96 ) 97 97 ) … … 109 109 110 110 auth.backend = "plain" 111 auth.backend.plain.userfile = " /tmp/lighttpd/lighttpd.user"111 auth.backend.plain.userfile = "@SRCDIR@/tmp/lighttpd/lighttpd.user" 112 112 auth.backend.plain.groupfile = "lighttpd.group" 113 113 … … 152 152 153 153 simple-vhost.document-root = "pages" 154 simple-vhost.server-root = " /tmp/lighttpd/servers/"154 simple-vhost.server-root = "@SRCDIR@/tmp/lighttpd/servers/" 155 155 simple-vhost.default-host = "www.example.org" 156 156 157 157 $HTTP["host"] == "vvv.example.org" { 158 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"158 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 159 159 } 160 160 161 161 $HTTP["host"] == "zzz.example.org" { 162 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"162 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 163 163 server.name = "zzz.example.org" 164 164 } -
branches/lighttpd-merge-1.4.x/tests/cleanup.sh
r1 r640 1 1 #!/bin/sh 2 3 tmpdir=/tmp/lighttpd4 2 5 3 if test x$srcdir = x; then 6 4 srcdir=. 7 5 fi 6 7 tmpdir=$srcdir/tmp/lighttpd 8 8 9 9 # create test-framework -
branches/lighttpd-merge-1.4.x/tests/condition.conf
r524 r640 3 3 debug.log-condition-handling = "enable" 4 4 5 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"6 server.pid-file = " /tmp/lighttpd/lighttpd.pid"5 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 6 server.pid-file = "@SRCDIR@/tmp/lighttpd/lighttpd.pid" 7 7 8 8 ## bind to port (default: 80) … … 11 11 ## bind to localhost (default: all interfaces) 12 12 server.bind = "localhost" 13 server.errorlog = " /tmp/lighttpd/logs/lighttpd.error.log"13 server.errorlog = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.error.log" 14 14 server.name = "www.example.org" 15 15 server.tag = "Apache 1.3.29" … … 23 23 24 24 25 accesslog.filename = " /tmp/lighttpd/logs/lighttpd.access.log"25 accesslog.filename = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.access.log" 26 26 27 27 mimetype.assign = ( ".html" => "text/html" ) … … 30 30 31 31 $HTTP["host"] == "www.example.org" { 32 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"32 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 33 33 server.name = "www.example.org" 34 34 url.redirect = ("^" => "/match_1") 35 35 } 36 36 else $HTTP["host"] == "test1.example.org" { 37 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"37 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 38 38 server.name = "test1.example.org" 39 39 url.redirect = ("^" => "/match_2") … … 41 41 # comments 42 42 else $HTTP["host"] == "test2.example.org" { 43 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"43 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 44 44 server.name = "test2.example.org" 45 45 url.redirect = ("^" => "/match_3") … … 49 49 50 50 else $HTTP["host"] == "test3.example.org" { 51 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"51 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 52 52 server.name = "test3.example.org" 53 53 url.redirect = ("^" => "/match_4") -
branches/lighttpd-merge-1.4.x/tests/fastcgi-10.conf
r349 r640 1 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"2 server.pid-file = " /tmp/lighttpd/lighttpd.pid"1 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 2 server.pid-file = "@SRCDIR@/tmp/lighttpd/lighttpd.pid" 3 3 4 4 ## bind to port (default: 80) … … 9 9 ## bind to localhost (default: all interfaces) 10 10 server.bind = "localhost" 11 server.errorlog = " /tmp/lighttpd/logs/lighttpd.error.log"11 server.errorlog = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.error.log" 12 12 server.name = "www.example.org" 13 13 server.tag = "Apache 1.3.29" … … 58 58 59 59 60 accesslog.filename = " /tmp/lighttpd/logs/lighttpd.access.log"60 accesslog.filename = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.access.log" 61 61 62 62 mimetype.assign = ( ".png" => "image/png", … … 76 76 ".conf" => "text/plain" ) 77 77 78 compress.cache-dir = " /tmp/lighttpd/cache/compress/"78 compress.cache-dir = "@SRCDIR@/tmp/lighttpd/cache/compress/" 79 79 compress.filetype = ("text/plain", "text/html") 80 80 … … 104 104 105 105 auth.backend = "plain" 106 auth.backend.plain.userfile = " /tmp/lighttpd/lighttpd.user"106 auth.backend.plain.userfile = "@SRCDIR@/tmp/lighttpd/lighttpd.user" 107 107 auth.backend.plain.groupfile = "lighttpd.group" 108 108 … … 147 147 148 148 $HTTP["host"] == "vvv.example.org" { 149 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"149 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 150 150 } 151 151 152 152 $HTTP["host"] == "zzz.example.org" { 153 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"153 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 154 154 server.name = "zzz.example.org" 155 155 } -
branches/lighttpd-merge-1.4.x/tests/fastcgi-13.conf
r559 r640 1 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"2 server.pid-file = " /tmp/lighttpd/lighttpd.pid"1 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 2 server.pid-file = "@SRCDIR@/tmp/lighttpd/lighttpd.pid" 3 3 4 4 debug.log-request-header = "enable" … … 13 13 ## bind to localhost (default: all interfaces) 14 14 server.bind = "localhost" 15 server.errorlog = " /tmp/lighttpd/logs/lighttpd.error.log"15 server.errorlog = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.error.log" 16 16 server.name = "www.example.org" 17 17 server.tag = "Apache 1.3.29" … … 62 62 63 63 64 accesslog.filename = " /tmp/lighttpd/logs/lighttpd.access.log"64 accesslog.filename = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.access.log" 65 65 66 66 mimetype.assign = ( ".png" => "image/png", … … 80 80 ".conf" => "text/plain" ) 81 81 82 compress.cache-dir = " /tmp/lighttpd/cache/compress/"82 compress.cache-dir = "@SRCDIR@/tmp/lighttpd/cache/compress/" 83 83 compress.filetype = ("text/plain", "text/html") 84 84 … … 104 104 105 105 auth.backend = "plain" 106 auth.backend.plain.userfile = " /tmp/lighttpd/lighttpd.user"106 auth.backend.plain.userfile = "@SRCDIR@/tmp/lighttpd/lighttpd.user" 107 107 auth.backend.plain.groupfile = "lighttpd.group" 108 108 … … 147 147 148 148 $HTTP["host"] == "vvv.example.org" { 149 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"149 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 150 150 } 151 151 152 152 $HTTP["host"] == "zzz.example.org" { 153 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"153 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 154 154 server.name = "zzz.example.org" 155 155 } -
branches/lighttpd-merge-1.4.x/tests/fastcgi-auth.conf
r387 r640 1 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"2 server.pid-file = " /tmp/lighttpd/lighttpd.pid"1 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 2 server.pid-file = "@SRCDIR@/tmp/lighttpd/lighttpd.pid" 3 3 4 4 debug.log-request-header = "enable" … … 13 13 ## bind to localhost (default: all interfaces) 14 14 server.bind = "localhost" 15 server.errorlog = " /tmp/lighttpd/logs/lighttpd.error.log"15 server.errorlog = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.error.log" 16 16 server.name = "www.example.org" 17 17 server.tag = "Apache 1.3.29" … … 62 62 63 63 64 accesslog.filename = " /tmp/lighttpd/logs/lighttpd.access.log"64 accesslog.filename = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.access.log" 65 65 66 66 mimetype.assign = ( ".png" => "image/png", … … 80 80 ".conf" => "text/plain" ) 81 81 82 compress.cache-dir = " /tmp/lighttpd/cache/compress/"82 compress.cache-dir = "@SRCDIR@/tmp/lighttpd/cache/compress/" 83 83 compress.filetype = ("text/plain", "text/html") 84 84 … … 90 90 "bin-path" => "@SRCDIR@/fcgi-auth", 91 91 "mode" => "authorizer", 92 "docroot" => " /tmp/lighttpd/servers/www.example.org/pages/",92 "docroot" => "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/", 93 93 94 94 ) … … 107 107 108 108 auth.backend = "plain" 109 auth.backend.plain.userfile = " /tmp/lighttpd/lighttpd.user"109 auth.backend.plain.userfile = "@SRCDIR@/tmp/lighttpd/lighttpd.user" 110 110 auth.backend.plain.groupfile = "lighttpd.group" 111 111 … … 150 150 151 151 $HTTP["host"] == "vvv.example.org" { 152 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"152 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 153 153 } 154 154 155 155 $HTTP["host"] == "zzz.example.org" { 156 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"156 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 157 157 server.name = "zzz.example.org" 158 158 } -
branches/lighttpd-merge-1.4.x/tests/fastcgi-responder.conf
r387 r640 1 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"2 server.pid-file = " /tmp/lighttpd/lighttpd.pid"1 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 2 server.pid-file = "@SRCDIR@/tmp/lighttpd/lighttpd.pid" 3 3 4 4 #debug.log-request-header = "enable" … … 16 16 ## bind to localhost (default: all interfaces) 17 17 server.bind = "localhost" 18 server.errorlog = " /tmp/lighttpd/logs/lighttpd.error.log"18 server.errorlog = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.error.log" 19 19 server.name = "www.example.org" 20 20 server.tag = "Apache 1.3.29" … … 65 65 66 66 67 accesslog.filename = " /tmp/lighttpd/logs/lighttpd.access.log"67 accesslog.filename = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.access.log" 68 68 69 69 mimetype.assign = ( ".png" => "image/png", … … 83 83 ".conf" => "text/plain" ) 84 84 85 compress.cache-dir = " /tmp/lighttpd/cache/compress/"85 compress.cache-dir = "@SRCDIR@/tmp/lighttpd/cache/compress/" 86 86 compress.filetype = ("text/plain", "text/html") 87 87 … … 110 110 111 111 auth.backend = "plain" 112 auth.backend.plain.userfile = " /tmp/lighttpd/lighttpd.user"112 auth.backend.plain.userfile = "@SRCDIR@/tmp/lighttpd/lighttpd.user" 113 113 auth.backend.plain.groupfile = "lighttpd.group" 114 114 … … 153 153 154 154 $HTTP["host"] == "vvv.example.org" { 155 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"155 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 156 156 } 157 157 158 158 $HTTP["host"] == "zzz.example.org" { 159 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"159 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 160 160 server.name = "zzz.example.org" 161 161 } -
branches/lighttpd-merge-1.4.x/tests/lighttpd.conf
r623 r640 1 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"2 server.pid-file = " /tmp/lighttpd/lighttpd.pid"1 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 2 server.pid-file = "@SRCDIR@/tmp/lighttpd/lighttpd.pid" 3 3 4 4 ## bind to port (default: 80) … … 7 7 ## bind to localhost (default: all interfaces) 8 8 server.bind = "localhost" 9 server.errorlog = " /tmp/lighttpd/logs/lighttpd.error.log"9 server.errorlog = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.error.log" 10 10 server.name = "www.example.org" 11 11 server.tag = "Apache 1.3.29" … … 45 45 ssi.extension = ( ".shtml" ) 46 46 47 accesslog.filename = " /tmp/lighttpd/logs/lighttpd.access.log"47 accesslog.filename = "@SRCDIR@/tmp/lighttpd/logs/lighttpd.access.log" 48 48 49 49 mimetype.assign = ( ".png" => "image/png", … … 63 63 ".conf" => "text/plain" ) 64 64 65 compress.cache-dir = " /tmp/lighttpd/cache/compress/"65 compress.cache-dir = "@SRCDIR@/tmp/lighttpd/cache/compress/" 66 66 compress.filetype = ("text/plain", "text/html") 67 67 … … 92 92 93 93 auth.backend = "plain" 94 auth.backend.plain.userfile = " /tmp/lighttpd/lighttpd.user"94 auth.backend.plain.userfile = "@SRCDIR@/tmp/lighttpd/lighttpd.user" 95 95 auth.backend.plain.groupfile = "lighttpd.group" 96 96 … … 137 137 138 138 $HTTP["host"] == "vvv.example.org" { 139 server.document-root = " /tmp/lighttpd/servers/www.example.org/pages/"139 server.document-root = "@SRCDIR@/tmp/lighttpd/servers/www.example.org/pages/" 140 <
