diff of dad56db03d0643f335a3c1251dcbc2b986822777

dad56db03d0643f335a3c1251dcbc2b986822777
diff --git a/Makefile b/Makefile
index 6df6b75..15134fd 100644
--- a/Makefile
+++ b/Makefile
@@ -20,8 +20,10 @@ murja: $(SRC_FILES)
 
 .PHONY: install
 install: murja
+	systemctl stop Murja
 	./bin/install.sh
 	# one can't `make` inside ./bin/install.sh
 	$(MAKE) /opt/murja/murja
 	$(MAKE) /usr/lib/systemd/system/Murja.service
 	chown -R murja:murja /opt/murja/
+	systemctl start Murja
diff --git a/src/routes/root-routes.lisp b/src/routes/root-routes.lisp
index 9764121..a8990b4 100644
--- a/src/routes/root-routes.lisp
+++ b/src/routes/root-routes.lisp
@@ -52,6 +52,7 @@
 	  (t (error 'unknown-mime :file-type type)))))
 
 (defun get-resource (file)
+  (format t "Trying to GET ~a~%" file)
   (let ((path (gethash file *allowed-resources*)))
     (if path
 	(let ((source (lisp-fixup:slurp-utf-8 path)))