pull/93/head
Andrea Spacca 4 years ago
parent fd4f0429e4
commit 86145be2b1

@ -13,6 +13,7 @@ import (
"net/http" "net/http"
"os" "os"
"path/filepath" "path/filepath"
"strings"
) )
type AppEngine struct { type AppEngine struct {
@ -27,6 +28,17 @@ func (ae *AppEngine) Setup(logger logrus.FieldLogger) *gin.Engine {
r.Use(middleware.ConfigMiddleware(ae.Config)) r.Use(middleware.ConfigMiddleware(ae.Config))
r.Use(gin.Recovery()) r.Use(gin.Recovery())
basePath := ae.Config.GetString("web.src.backend.basepath")
if len(basePath) > 0 {
r.Group(basePath, func(c *gin.Context) {
c.Request.URL.Path = strings.TrimPrefix(c.Request.URL.Path, basePath)
r.HandleContext(c)
})
} else {
basePath = "/"
}
api := r.Group("/api") api := r.Group("/api")
{ {
api.GET("/health", func(c *gin.Context) { api.GET("/health", func(c *gin.Context) {
@ -48,7 +60,7 @@ func (ae *AppEngine) Setup(logger logrus.FieldLogger) *gin.Engine {
//redirect base url to /web //redirect base url to /web
r.GET("/", func(c *gin.Context) { r.GET("/", func(c *gin.Context) {
c.Redirect(http.StatusFound, "/web") c.Redirect(http.StatusFound, basePath + "/web")
}) })
//catch-all, serve index page. //catch-all, serve index page.

Loading…
Cancel
Save