diff --git a/client/src/pages/authentication/auth-forms/AuthLogin.jsx b/client/src/pages/authentication/auth-forms/AuthLogin.jsx index a27ee1c..15be3e9 100644 --- a/client/src/pages/authentication/auth-forms/AuthLogin.jsx +++ b/client/src/pages/authentication/auth-forms/AuthLogin.jsx @@ -185,7 +185,7 @@ const AuthLogin = () => { label={Keep me sign in} />*/} - Forgot Password? + Forgot Your Password? diff --git a/package.json b/package.json index c14b6ed..7a9259e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cosmos-server", - "version": "0.3.0-unstable6", + "version": "0.3.0-unstable7", "description": "", "main": "test-server.js", "bugs": { diff --git a/src/httpServer.go b/src/httpServer.go index 4574e12..3cfc5cb 100644 --- a/src/httpServer.go +++ b/src/httpServer.go @@ -222,7 +222,7 @@ func StartServer() { srapi.Use(proxy.SmartShieldMiddleware( utils.SmartShieldPolicy{ Enabled: true, - PerUserSimultaneous: 3, + PerUserSimultaneous: 8, MaxGlobalSimultaneous: 12, PolicyStrictness: 1, PerUserRequestLimit: 5000, diff --git a/src/proxy/shield.go b/src/proxy/shield.go index 5c862ae..32d88bb 100644 --- a/src/proxy/shield.go +++ b/src/proxy/shield.go @@ -240,7 +240,7 @@ func SmartShieldMiddleware(policy utils.SmartShieldPolicy) func(http.Handler) ht policy.PolicyStrictness = 2 // NORMAL } if(policy.PerUserSimultaneous == 0) { - policy.PerUserSimultaneous = 5 + policy.PerUserSimultaneous = 8 } if(policy.MaxGlobalSimultaneous == 0) { policy.MaxGlobalSimultaneous = 50