Fix CORS setup

AnyHost * is not allowed in combination with Allow-Credentials, see https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS/Errors/CORSNotSupportingCredentials
This commit is contained in:
William Brawner 2021-12-18 09:10:22 -07:00
parent d3de43dcd9
commit 97a6807b84

View file

@ -108,7 +108,7 @@ fun Application.moduleWithDependencies(
})
}
install(CORS) {
host("https://twigs.wbrawner.com") // TODO: Make configurable
host("twigs.wbrawner.com", listOf("http", "https")) // TODO: Make configurable
method(HttpMethod.Options)
method(HttpMethod.Put)
method(HttpMethod.Delete)