1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-21 03:47:04 +00:00
This commit is contained in:
Gerasimos (Makis) Maropoulos
2022-04-13 02:25:47 +03:00
parent 3582427df6
commit ecb1c617df
5 changed files with 91 additions and 9 deletions

View File

@@ -32,7 +32,7 @@ func main() {
app.HandleMany(strings.Join(iris.WebDAVMethods, " "), "/{p:path}", iris.FromStd(webdavHandler))
app.Listen(":8080",
iris.WithoutServerError(iris.ErrServerClosed),
iris.WithoutServerError(iris.ErrServerClosed, iris.ErrURLQuerySemicolon),
iris.WithoutPathCorrection,
)
}