From a6871d420053fa06cebdeccee82752a9f9b99af8 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Mon, 1 Jul 2024 01:50:25 -0400 Subject: Update server configuration to allow specific CORS origins and increase rate limit to 300 --- config/local.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'config') diff --git a/config/local.yaml b/config/local.yaml index 751d742..b422f3a 100644 --- a/config/local.yaml +++ b/config/local.yaml @@ -10,14 +10,14 @@ jwt: session_time: 168h max_refresh: 168h server: - port: 8000 + port: 2021 read_timeout: 2s write_timeout: 1s rate_period: 60s - rate_limit: 200 + rate_limit: 300 cors_allow_origins: - "http://localhost:5173" - + - "http://localhost:7926" scheduler_jobs: due_job: 30m overdue_job: 3h -- cgit