and there is 8080 port set in the application.conf
# ktor
s
and there is 8080 port set in the application.conf
1
s
Do you have any ssl directive in the app.conf
Looks like it's trying to find the ssl port because ssl is enable
s
no ssl directives
ktor { deployment { port = 8080 port = ${?PORT} shutdown.url = "/ktor/application/shutdown" } application { modules = [ com.ssijak.ktor.ApplicationKt.module ] } }
ktor plugin for intellij just got updated with the following change "Fixed resources folder with Gradle Kotlin DSL."
🙂
It works now
🎉 1