aboutsummaryrefslogtreecommitdiff
path: root/application_router.go
diff options
context:
space:
mode:
Diffstat (limited to 'application_router.go')
-rw-r--r--application_router.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/application_router.go b/application_router.go
index 852e68b..501956b 100644
--- a/application_router.go
+++ b/application_router.go
@@ -20,9 +20,12 @@ func CreateApplicationRouter(applicationContext *ApplicationContext) *gin.Engine
router.MaxMultipartMemory = 8 << 30
router.Use(static.Serve("/", static.LocalFile("./frontend/build", true)))
- router.GET("/connections/:id", func(c *gin.Context) {
- c.File("./frontend/build/index.html")
- })
+
+ for _, path := range []string{"/connections/:id", "/pcaps", "/rules", "/services", "/config"} {
+ router.GET(path, func(c *gin.Context) {
+ c.File("./frontend/build/index.html")
+ })
+ }
router.POST("/setup", func(c *gin.Context) {
if applicationContext.IsConfigured {