fix: need to change dnslink route registration to use a path param based route
This commit is contained in:
parent
37cdbfbc0d
commit
ae071a30ec
2
main.go
2
main.go
|
@ -117,7 +117,7 @@ func main() {
|
||||||
// And the wildcard one for index.html, *.js, *.css and e.t.c.
|
// And the wildcard one for index.html, *.js, *.css and e.t.c.
|
||||||
app.Get("/swagger/{any:path}", swaggerUI)
|
app.Get("/swagger/{any:path}", swaggerUI)
|
||||||
|
|
||||||
app.Party("*").Any("*", dnslink.Handler)
|
app.Any("/{p:path}", dnslink.Handler)
|
||||||
|
|
||||||
// Start the Iris app and listen for incoming requests on port 80
|
// Start the Iris app and listen for incoming requests on port 80
|
||||||
err := app.Listen(":8080", func(app *iris.Application) {
|
err := app.Listen(":8080", func(app *iris.Application) {
|
||||||
|
|
Loading…
Reference in New Issue