#+title: Track website visit statistics * Setup lighttpd On the config file append the proxy to the running lisp server #+begin_src conf server.modules += ( "mod_proxy" ) $HTTP["url"] =~ "^/stats/" { proxy.server = ("" => ( "hunchentoot" => ( "host" => "127.0.0.1", "port" => 4252 ) ) ) proxy.header = ( "map-urlpath" => ( "/stats" => "" ) ) } #+end_src