From 8b47f868ce97f50757225a72b958ed483336fd0c Mon Sep 17 00:00:00 2001 From: sanine-a Date: Mon, 15 May 2023 13:01:25 -0500 Subject: add ability to serve under subdirectory --- main.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index b61e237..6e37f43 100644 --- a/main.go +++ b/main.go @@ -25,21 +25,21 @@ func main() { users := getUsers(conf) // add phlox endpoints - http.HandleFunc("/phlox/login", func(w http.ResponseWriter, r *http.Request) { + http.HandleFunc(conf.PathPrefix + "/phlox/login", func(w http.ResponseWriter, r *http.Request) { Login(w, r, users, sessions, pages) }) - http.HandleFunc("/phlox/logout", func(w http.ResponseWriter, r *http.Request) { + http.HandleFunc(conf.PathPrefix + "/phlox/logout", func(w http.ResponseWriter, r *http.Request) { Logout(w, r, sessions) }) - http.HandleFunc("/phlox/asset/", func(w http.ResponseWriter, r *http.Request) { + http.HandleFunc(conf.PathPrefix + "/phlox/asset/", func(w http.ResponseWriter, r *http.Request) { filename := strings.TrimPrefix(r.URL.Path, "/phlox/asset/") path := filepath.Join(conf.AssetDirectory, filename) http.ServeFile(w, r, path) }) - http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { + http.HandleFunc(conf.PathPrefix + "/", func(w http.ResponseWriter, r *http.Request) { if r.URL.Path == "/" { w.Header().Add("Location", "/phlox/login") w.WriteHeader(http.StatusTemporaryRedirect) @@ -50,7 +50,7 @@ func main() { // add reverse proxy endpoints for _, e := range conf.Endpoints { - addEndpoint(sessions, pages, e) + addEndpoint(conf, sessions, pages, e) } // timer for inactivity log out -- cgit v1.2.1