]> git.pld-linux.org Git - packages/lighttpd.git/blame - lighttpd-mod_status.conf
- limit access only to localhost
[packages/lighttpd.git] / lighttpd-mod_status.conf
CommitLineData
7d3968ad
ER
1server.modules += (
2 "mod_status"
3)
693950e2
ER
4
5#### status module
6status.status-url = "/server-status"
7status.config-url = "/server-config"
8status.statistics-url = "/server-stats"
a9344f56
ER
9
10# limit access only to localhost
11$HTTP["url"] =~ "^/server-(?status|config|stats)" {
12 $HTTP["remoteip"] != "127.0.0.1" {
13 url.access-deny = ( "" )
14 }
15}
This page took 0.032513 seconds and 4 git commands to generate.