2016-11-20 20:04:52 +01:00
|
|
|
{;; A secret key used for create tokens
|
|
|
|
;; WARNING: this is a default secret key and
|
|
|
|
;; it should be overwritten in production env.
|
|
|
|
:secret "5qjiAn-QUpawUNqGP10UZKklSqbLKcdGY3sJpq0UUACpVXGg2HOFJCBejDWVHskhRyp7iHb4rjOLXX2ZjF-5cw"
|
2019-02-19 22:31:59 +01:00
|
|
|
|
|
|
|
:registration
|
|
|
|
{
|
|
|
|
:enabled true}
|
|
|
|
|
2016-11-20 20:04:52 +01:00
|
|
|
:smtp
|
|
|
|
{:host "localhost" ;; Hostname of the desired SMTP server.
|
|
|
|
:port 25 ;; Port of SMTP server.
|
|
|
|
:user nil ;; Username to authenticate with (if authenticating).
|
|
|
|
:pass nil ;; Password to authenticate with (if authenticating).
|
|
|
|
:ssl false ;; Enables SSL encryption if value is truthy.
|
2019-02-14 13:42:16 +01:00
|
|
|
:tls false ;; Enables TLS encryption if value is truthy.
|
|
|
|
:enabled false ;; Enables SMTP if value is truthy.
|
2016-11-20 20:04:52 +01:00
|
|
|
:noop true}
|
|
|
|
|
|
|
|
:auth-options {:alg :a256kw :enc :a128cbc-hs256}
|
|
|
|
|
|
|
|
:email {:reply-to "no-reply@uxbox.io"
|
2019-02-19 22:31:59 +01:00
|
|
|
:from "no-reply@uxbox.io"
|
|
|
|
:support "support@uxbox.io"}
|
2016-11-20 20:04:52 +01:00
|
|
|
|
|
|
|
:http {:port 6060
|
|
|
|
:max-body-size 52428800
|
|
|
|
:debug true}
|
|
|
|
|
|
|
|
:media
|
2019-02-19 22:31:59 +01:00
|
|
|
{:directory "resources/public/media"
|
|
|
|
:uri "http://localhost:6060/media/"}
|
2016-11-20 20:04:52 +01:00
|
|
|
|
|
|
|
:static
|
2019-02-19 22:31:59 +01:00
|
|
|
{:directory "resources/public/static"
|
|
|
|
:uri "http://localhost:6060/static/"}
|
2016-11-20 20:04:52 +01:00
|
|
|
|
|
|
|
:database
|
|
|
|
{:adapter "postgresql"
|
|
|
|
:username nil
|
|
|
|
:password nil
|
|
|
|
:database-name "uxbox"
|
|
|
|
:server-name "localhost"
|
|
|
|
:port-number 5432}}
|