From 1b44d23dd646f0be396de5be0dce64a02bbc000f Mon Sep 17 00:00:00 2001 From: yequari Date: Sun, 23 Mar 2025 16:16:30 -0700 Subject: [PATCH] prepare for test deployment embed static files remove hard tls requirement --- cmd/web/main.go | 6 +++++- cmd/web/routes.go | 4 ++-- ui/efs.go | 6 ++++++ 3 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 ui/efs.go diff --git a/cmd/web/main.go b/cmd/web/main.go index 5bf5a1c..e1a2bec 100644 --- a/cmd/web/main.go +++ b/cmd/web/main.go @@ -78,7 +78,11 @@ func main() { logger.Info("Starting server", slog.Any("addr", *addr)) - err = srv.ListenAndServeTLS("./tls/cert.pem", "./tls/key.pem") + if app.debug { + err = srv.ListenAndServeTLS("./tls/cert.pem", "./tls/key.pem") + } else { + err = srv.ListenAndServe() + } logger.Error(err.Error()) os.Exit(1) } diff --git a/cmd/web/routes.go b/cmd/web/routes.go index 6bea60f..cc5b6b5 100644 --- a/cmd/web/routes.go +++ b/cmd/web/routes.go @@ -3,13 +3,13 @@ package main import ( "net/http" + "git.32bit.cafe/32bitcafe/guestbook/ui" "github.com/justinas/alice" ) func (app *application) routes() http.Handler { mux := http.NewServeMux() - fileServer := http.FileServer(http.Dir("./ui/static")) - mux.Handle("GET /static/", http.StripPrefix("/static", fileServer)) + mux.Handle("GET /static/", http.FileServerFS(ui.Files)) dynamic := alice.New(app.sessionManager.LoadAndSave, noSurf, app.authenticate) standard := alice.New(app.recoverPanic, app.logRequest, commonHeaders) diff --git a/ui/efs.go b/ui/efs.go new file mode 100644 index 0000000..4031fbf --- /dev/null +++ b/ui/efs.go @@ -0,0 +1,6 @@ +package ui + +import "embed" + +//go:embed "static" +var Files embed.FS