# catlfish catlfish is a Certificate Transparency log server (RFC 6962). # Compile $ make $ make release # Requirements A compiled plop application in ../plop A compiled https://github.com/basho/lager (for logging) in ../lager A compiled https://github.com/mochi/mochiweb (for web server functionality) in ../mochiweb A compiled https://github.com/benoitc/hackney.git (http client) in ../hackney Note: hackney is dependent on rebar, but doesn't include one. You can use the rebar from lager by adding "REBAR=../lager/rebar" to the make command line, or install rebar yourself. # Start $ (cd rel ; bin/erl -config catlfish) # Logs and traces As configured in httpd_props.conf, logs can be found in catlfish/webroot/log in the rel directory. To enable a crazy amount of tracing information from inets, do 1> inets_trace:enable(max, io). # To do - Stop using inets httpd mod_esi and make catlfish a proper application.