diff options
author | Krzysztof Krzyżaniak <eloy@debian.org> | 2006-01-19 11:58:51 +0000 |
---|---|---|
committer | Krzysztof Krzyżaniak <eloy@debian.org> | 2006-01-19 11:58:51 +0000 |
commit | 9c89d40089b0fde799739612fd086c993c85cc49 (patch) | |
tree | 308d5f0df64e44bd8a3d52acd005449d95fa6f90 | |
parent | dee711acee65d3f55a9d826a011cb765a0b7315a (diff) | |
download | lighttpd-9c89d40089b0fde799739612fd086c993c85cc49.tar.gz |
eloy: fix
-rw-r--r-- | debian/lighttpd.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/lighttpd.conf b/debian/lighttpd.conf index 9bb6277..1112780 100644 --- a/debian/lighttpd.conf +++ b/debian/lighttpd.conf @@ -193,7 +193,7 @@ alias.url = ( ) # and by default allow them only from localhost $HTTP["url"] =~ "^/doc/|^/images/" { - $HTTP["remoteip"] =! "127.0.0.1" { + $HTTP["remoteip"] != "127.0.0.1" { url.access-deny = ( "" ) } } |