From 0c6ee07e24fb93fb9c24fe2becbbba3e9a0334fd Mon Sep 17 00:00:00 2001 From: uwu uwu Date: Wed, 17 May 2023 03:25:43 +0200 Subject: [PATCH] Fixed nginx config --- server/nginx/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/server/nginx/nginx.conf b/server/nginx/nginx.conf index 6d7ba6a..c772737 100644 --- a/server/nginx/nginx.conf +++ b/server/nginx/nginx.conf @@ -9,6 +9,7 @@ http { location /api/v1 { proxy_pass http://server:10000; + add_header Access-Control-Allow-Origin *; } } }