Good afternoon... I've been trying to figure this ...
# ktor
m
Good afternoon... I've been trying to figure this out with no luck: Is there any way to make EngineMain use another file instead of application.conf? I'm trying to create a monolith here with several Ktor servers and a application-server-#.conf for each server.
👀 1
a
You can pass the command line flag
-config
with a path to a config file as value, e.g.
-confg=/path/to/config
.
m
Oh nice, thanks!