blob: 0e0d98a89d58f70c4c6281ce11adf4f246fc3ce4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
;;;; -*- mode: clojure; coding: utf-8 -*-
{:database {:classname "org.postgresql.Driver"
:subprotocol "postgresql"
:subname "//localhost:5432/benki"
:user "benki"
:password ""}
:websocket-base "ws://localhost:3001"
:base-uri "https://localhost:4333"
:cert-req-base "https://localhost:4334"
:tag-base "example.com"
:web-port 3001
:mode :production ;or :dev
:xmpp {:user "benki"
:service-name "example.com"
:server "jabber.example.com"
:port 5222
:password ""
:sasl true
:verify-cert true
:tls :required} ;or one of: true, false
}
|