From 84f11b9a23fe4ad0a3039ff956d5fe868d1cc98a Mon Sep 17 00:00:00 2001 From: xfarrow Date: Thu, 15 Feb 2024 10:41:34 +0100 Subject: [PATCH] Update .env --- backend/apis/nodejs/.env | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/apis/nodejs/.env b/backend/apis/nodejs/.env index 6c23977..10d1710 100644 --- a/backend/apis/nodejs/.env +++ b/backend/apis/nodejs/.env @@ -2,9 +2,9 @@ # API server settings API_SERVER_PORT = 3000 -JWT_SECRET_KEY = jwt-secret # Change this -LIMITER_WINDOW = 3600000 # 1 hour in milliseconds -LIMITER_MAXIMUM_PER_WINDOW = 500 # 500 requests for each window +JWT_SECRET_KEY = jwt-secret # Change this in production +LIMITER_WINDOW = 3600000 # Milliseconds in limiter window +LIMITER_MAXIMUM_PER_WINDOW = 500 # Requests for each limiter window # Database settings POSTGRES_SERVER = localhost