fix: console /console/ path prefix strip + TLS cert-manager letsencrypt

This commit is contained in:
Naeel
2026-04-15 10:22:19 +03:00
parent cdc7f06765
commit 72fbb6c516
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -103,7 +103,7 @@ func main() {
_, _ = w.Write([]byte("ok\n"))
})
uiHandler := ui.Handler()
uiHandler := http.StripPrefix("/console", ui.Handler())
mux.Handle("/console", uiHandler)
mux.Handle("/console/", uiHandler)