ytdl-web/web/serve.go

29 lines
631 B
Go
Raw Normal View History

2023-04-14 11:58:32 -04:00
package web
import (
"fmt"
2023-04-14 16:07:57 -04:00
2023-04-14 11:58:32 -04:00
"github.com/gofiber/fiber/v2"
2023-05-23 18:44:05 -04:00
"go.fifitido.net/ytdl-web/config"
"golang.org/x/exp/slog"
2023-04-14 11:58:32 -04:00
)
2023-05-23 18:44:05 -04:00
func Serve(cfg *config.Config) error {
2023-04-14 11:58:32 -04:00
engine := ViewsEngine()
2023-05-23 18:44:05 -04:00
app := fiber.New(fiber.Config{
Views: engine,
EnableTrustedProxyCheck: true,
TrustedProxies: cfg.HTTP.TrustedProxies,
DisableStartupMessage: true,
})
routes := &routes{}
2023-04-14 11:58:32 -04:00
routes.Register(app)
2023-04-14 11:58:32 -04:00
2023-05-23 18:44:05 -04:00
listenAddr := fmt.Sprintf("%s:%d", cfg.HTTP.Listen, cfg.HTTP.Port)
slog.Info("Starting HTTP server", slog.String("host", cfg.HTTP.Listen), slog.Int("port", cfg.HTTP.Port))
return app.Listen(listenAddr)
2023-04-14 11:58:32 -04:00
}