feat: logging proxied requests

This commit is contained in:
2026-05-06 01:50:56 +02:00
parent e995d85346
commit 416887197f
+2
View File
@@ -44,6 +44,8 @@ func main() {
http.Error(w, "unauthorized", http.StatusUnauthorized)
return
}
slog.Info("proxying request", "client", clientIP(r))
proxy.ServeHTTP(w, r)
})