🐛 Fix large JWT headers

This commit is contained in:
LittleSheep 2025-03-23 00:08:10 +08:00
parent 15c513fe6d
commit ae2c141efa

View File

@ -1,9 +1,10 @@
package http
import (
"strings"
"git.solsynth.dev/hypernet/nexus/pkg/nex/sec"
"git.solsynth.dev/hypernet/passport/pkg/authkit"
"strings"
"git.solsynth.dev/hypernet/messaging/pkg/internal/http/api"
"github.com/gofiber/fiber/v2"
@ -31,6 +32,7 @@ func NewServer() *App {
JSONEncoder: jsoniter.ConfigCompatibleWithStandardLibrary.Marshal,
JSONDecoder: jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal,
BodyLimit: 50 * 1024 * 1024,
ReadBufferSize: 5 * 1024 * 1024, // 5MB for large JWT
EnablePrintRoutes: viper.GetBool("debug.print_routes"),
})