mirror of
https://github.com/jorisvink/kore
synced 2025-03-09 12:39:01 -04:00
Kore will automatically detect if a route is a dynamic or static one so there is no need for the configuration options to differ anymore.
19 lines
241 B
Plaintext
19 lines
241 B
Plaintext
# sql configuration
|
|
|
|
server tls {
|
|
bind 127.0.0.1 8888
|
|
}
|
|
|
|
tls_dhparam dh2048.pem
|
|
|
|
domain * {
|
|
attach tls
|
|
|
|
certfile cert/server.pem
|
|
certkey cert/key.pem
|
|
|
|
route / koreapp.query
|
|
route /hello koreapp.hello
|
|
route /slow koreapp.slow
|
|
}
|