my http -&gt; https redirect is redirecting to <ht...
# ktor
j
my http -> https redirect is redirecting to https://0.0.0.0 instead of https://domain.com has anyone seen such an issue before? I'm using the HttpsRedirect plugin
Copy code
fun Application.module() {

	if (ENV.env != LOCAL) {
		install(ForwardedHeaderSupport)
		install(XForwardedHeaderSupport)
		install(HttpsRedirect)
	}
println out host, i get 0.0.0.0.0.0
Copy code
intercept(ApplicationCallPipeline.Features) {
			val host = this.context.request.host()