style: make port a string for easier nix integration
Alan Pearce alan@alanpearce.eu
Mon, 13 May 2024 23:04:50 +0200
2 files changed, 4 insertions(+), 3 deletions(-)
M internal/config/config.go → internal/config/config.go
@@ -61,7 +61,7 @@ type Web struct { ContentSecurityPolicy CSP ListenAddress string - Port string + Port int BaseURL URL SentryDSN string Environment string @@ -86,7 +86,7 @@ var defaultConfig = Config{ DataPath: "./data", Web: &Web{ ListenAddress: "localhost", - Port: "3000", + Port: 3000, BaseURL: mustURL("http://localhost:3000"), ContentSecurityPolicy: CSP{ DefaultSrc: []string{"'self'"},
M internal/server/server.go → internal/server/server.go
@@ -8,6 +8,7 @@ "net" "net/http" "searchix/internal/config" "searchix/internal/index" + "strconv" "time" "github.com/pkg/errors" @@ -22,7 +23,7 @@ mux, err := NewMux(conf, index, liveReload) if err != nil { return nil, err } - listenAddress := net.JoinHostPort(conf.Web.ListenAddress, conf.Web.Port) + listenAddress := net.JoinHostPort(conf.Web.ListenAddress, strconv.Itoa(conf.Web.Port)) return &Server{ &http.Server{