1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
global: {
# Points to a logback config file
logging-config: examples/webrouting_app/logback.xml
}
nrepl: {
enabled: true
}
webserver: {
foo: {
port: 8080
default-server: true
}
quux: {
port: 9000
}
}
web-router-service: {
"examples.webrouting-app.example-services/foo-service": "/foo"
"examples.webrouting-app.example-services/bar-service": {
bar: "/bar"
baz: "/goodbye"
}
"examples.webrouting-app.example-services/quux-service": {
route: "/quux"
server: "quux"
}
"examples.webrouting-app.example-services/bert-service": {
baz: "/baz"
bert: {
route: "/bert"
server: "quux"
}
}
"examples.webrouting-app.example-services/hello-service": "/hello"
}
|