status.conf 666 B

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