dave
11/22/2017, 3:31 PMFilter { next ->
{
if(it.uri.scheme == "http") {
Response(Status.SEE_OTHER).header("location", it.uri.scheme("https").toString())
} else {
next(it)
}
}
}