Annotation of embedaddon/lighttpd/doc/config/conf.d/status.conf, revision 1.1.1.1

1.1       misho       1: #######################################################################
                      2: ##
                      3: ##  Status Module 
                      4: ## --------------- 
                      5: ##
                      6: ## see http://www.lighttpd.net/documentation/status.html
                      7: ##
                      8: server.modules += ( "mod_status" )
                      9: 
                     10: $HTTP["remoteip"] == "127.0.0.0/8" {
                     11: ##
                     12: ## configure urls for the various parts of the module. 
                     13: ##
                     14:   status.status-url          = "/server-status"
                     15:   status.config-url          = "/server-config"
                     16:   status.statistics-url      = "/server-statistics"
                     17: ##
                     18: ## add JavaScript which allows client-side sorting for the connection
                     19: ## overview 
                     20: ##
                     21:   status.enable-sort         = "enable"
                     22: }
                     23: ##
                     24: #######################################################################

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>