diff --git a/node/node.go b/node/node.go index da41169c52..0fbc17195c 100644 --- a/node/node.go +++ b/node/node.go @@ -449,8 +449,10 @@ func (n *Node) startRPC() error { if err := server.setListenAddr(n.config.AuthAddr, port); err != nil { return err } - sharedConfig := rpcConfig - sharedConfig.jwtSecret = secret + // Don't limit the requests to the auth endpoint + sharedConfig := rpcEndpointConfig{ + jwtSecret: secret, + } if err := server.enableRPC(allAPIs, httpConfig{ CorsAllowedOrigins: DefaultAuthCors, Vhosts: n.config.AuthVirtualHosts,