Compare commits

..

No commits in common. "f239b17255cab2ff56411a67e552261330f58884" and "a41244fb6254e17279f2c087c82d9285ee2410c3" have entirely different histories.

3 changed files with 3 additions and 13 deletions

View File

@ -78,11 +78,7 @@ func main() {
logger.Info("Starting server", slog.Any("addr", *addr))
if app.debug {
err = srv.ListenAndServeTLS("./tls/cert.pem", "./tls/key.pem")
} else {
err = srv.ListenAndServe()
}
err = srv.ListenAndServeTLS("./tls/cert.pem", "./tls/key.pem")
logger.Error(err.Error())
os.Exit(1)
}

View File

@ -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()
mux.Handle("GET /static/", http.FileServerFS(ui.Files))
fileServer := http.FileServer(http.Dir("./ui/static"))
mux.Handle("GET /static/", http.StripPrefix("/static", fileServer))
dynamic := alice.New(app.sessionManager.LoadAndSave, noSurf, app.authenticate)
standard := alice.New(app.recoverPanic, app.logRequest, commonHeaders)

View File

@ -1,6 +0,0 @@
package ui
import "embed"
//go:embed "static"
var Files embed.FS