This message was deleted.
# ktor
s
This message was deleted.
a
I think I found them in the code:
Copy code
public object ConfigKeys {
    public const val applicationIdPath: String = "ktor.application.id"
    public const val hostConfigPath: String = "ktor.deployment.host"
    public const val hostPortPath: String = "ktor.deployment.port"
    public const val hostWatchPaths: String = "ktor.deployment.watch"

    public const val rootPathPath: String = "ktor.deployment.rootPath"

    public const val hostSslPortPath: String = "ktor.deployment.sslPort"
    public const val hostSslKeyStore: String = "ktor.security.ssl.keyStore"
    public const val hostSslKeyAlias: String = "ktor.security.ssl.keyAlias"
    public const val hostSslKeyStorePassword: String = "ktor.security.ssl.keyStorePassword"
    public const val hostSslPrivateKeyPassword: String = "ktor.security.ssl.privateKeyPassword"
    public const val developmentModeKey: String = "ktor.development"
}
I am stupid. They are in the docs.
a
@Arjan van Wieringen If you find the answer to your own question, in the future consider leaving your question. You put in the hard work to find the answer and others may benefit from that. Whether it's here or it ends up as a datapoint in an AI.
a
You’re absolutely right