send headers from config.toml
Alan Pearce alan@alanpearce.eu
Sat, 20 Apr 2024 19:31:21 +0200
3 files changed, 27 insertions(+), 13 deletions(-)
M fly.toml → fly.toml
@@ -31,8 +31,6 @@ hard_limit = 20000 soft_limit = 15000 [http_service.http_options.response] pristine = true -[http_service.http_options.response.headers] - Strict-Transport-Security = "max-age=31536000; includeSubdomains; preload" [[http_service.checks]] grace_period = "15s" interval = "30s"
M nix/default.nix → nix/default.nix
@@ -10,6 +10,9 @@ in pkgs.dockerTools.${type} { name = "registry.fly.io/alanpearce-eu"; tag = dockerTag; + contents = [ + (pkgs.writeTextDir "config.toml" (builtins.readFile ./../config.toml)) + ]; config = { Cmd = [ "${server}/bin/website" ]; Env = [
M server.go → server.go
@@ -49,16 +49,20 @@ var Commit string func main() { - config := Config{} - if help, err := conf.Parse("", &config); err != nil { + runtimeConfig := Config{} + if help, err := conf.Parse("", &runtimeConfig); err != nil { if errors.Is(err, conf.ErrHelpWanted) { fmt.Println(help) os.Exit(1) } - log.Panicf("parsing config: %v", err) + log.Panicf("parsing runtime configuration: %v", err) + } + config, err := cfg.GetConfig("config.toml") + if err != nil { + log.Panicf("parsing configuration file: %v", err) } - err := sentry.Init(sentry.ClientOptions{ + err = sentry.Init(sentry.ClientOptions{ Dsn: os.Getenv("SENTRY_DSN"), Release: os.Getenv("FLY_MACHINE_VERSION"), Environment: os.Getenv("ENV"), @@ -100,6 +104,15 @@ }) website.Use(prometheus.Middleware) website.Use(fibersentry.New(fibersentry.Config{})) + website.Use(func(c *fiber.Ctx) error { + for k, v := range config.Extra.Headers { + c.Set(k, v) + } + if c.Secure() { + c.Set("Strict-Transport-Security", "max-age=31536000; includeSubdomains; preload") + } + return c.Next() + }) website.Use(compress.New()) website.Use(cache.New(cache.Config{ @@ -132,17 +145,17 @@ ContentTypeCharset: "utf-8", MaxAge: int((24 * time.Hour).Seconds()), })) website.Use(notFoundHandler) - hosts[config.BaseURL.Host] = &Host{website} + hosts[runtimeConfig.BaseURL.Host] = &Host{website} toplevel := fiber.New(fiber.Config{ - DisableStartupMessage: config.Production, + DisableStartupMessage: runtimeConfig.Production, ServerHeader: fmt.Sprintf("website (%s)", Commit), }) toplevel.Get("/health", func(c *fiber.Ctx) error { return c.SendStatus(fiber.StatusOK) }) var logWriter io.Writer - if config.Production { + if runtimeConfig.Production { logWriter = law.NewWriteAsyncer(os.Stdout, nil) } else { logWriter = os.Stdout @@ -156,10 +169,10 @@ })) toplevel.Use(func(c *fiber.Ctx) error { host := hosts[c.Hostname()] if host == nil { - if config.RedirectOtherHostnames { - return c.Redirect(config.BaseURL.JoinPath(c.OriginalURL()).String()) + if runtimeConfig.RedirectOtherHostnames { + return c.Redirect(runtimeConfig.BaseURL.JoinPath(c.OriginalURL()).String()) } else { - hosts[config.BaseURL.Host].Fiber.Handler()(c.Context()) + hosts[runtimeConfig.BaseURL.Host].Fiber.Handler()(c.Context()) return nil } } else { @@ -172,5 +185,5 @@ go func() { err := metricServer.Listen(":9091") log.Printf("failed to start metrics server: %v", err) }() - log.Fatal(toplevel.Listen(fmt.Sprintf("%s:%d", "", config.Port))) + log.Fatal(toplevel.Listen(fmt.Sprintf("%s:%d", "", runtimeConfig.Port))) }