Add X-Forwarded-For support

Signed-off-by: Graham <gpe@openrs2.org>
pull/132/head
Graham 3 years ago
parent 2d136c89e9
commit c4f807d38f
  1. 2
      archive/src/main/kotlin/org/openrs2/archive/web/WebServer.kt

@ -4,6 +4,7 @@ import com.fasterxml.jackson.databind.ObjectMapper
import io.ktor.application.call
import io.ktor.application.install
import io.ktor.features.ContentNegotiation
import io.ktor.features.XForwardedHeaderSupport
import io.ktor.http.ContentType
import io.ktor.http.HttpStatusCode
import io.ktor.http.content.resources
@ -45,6 +46,7 @@ public class WebServer @Inject constructor(
})
}
install(XForwardedHeaderSupport)
install(Webjars)
routing {

Loading…
Cancel
Save