Hello ! In order to be able to configure the logs and error template locations I had to edit this file:
clack/src/handler/hunchentoot.lisp
and apply this fix:
(defun run (app &rest args
&key debug (port 5000)
ssl ssl-key-file ssl-cert-file ssl-key-password
access-log-destination error-template-directory message-log-destination ; <- ADDED
max-thread-count max-accept-count (persistent-connections-p t))
; then added these 3 params in the two (apply #'make-instance...) below
Hello ! In order to be able to configure the logs and error template locations I had to edit this file:
clack/src/handler/hunchentoot.lisp
and apply this fix: