How to configure pedestal's http/resource-path to the current public/www directory in the jar, so that after the program starts, I cannot access http://localhost:300/index.html Directory structure is as follows app.jar public -www -index.html there are not working http/resource-path "/public/www" ;; or "./public/www" "d:/app/public/www" I don't want to package the static website into the JAR file.
Look at the http/file-path option. http://pedestal.io/pedestal/0.7/reference/service-map.html
It should be easier to find this in the documentation; I'll work on it.
Yes. It worked. Thanks.