From 4685141882400cad1855ac21b51db17e993168b6 Mon Sep 17 00:00:00 2001 From: Lee Harrold Date: Sun, 14 Apr 2024 09:38:28 -0400 Subject: [PATCH] pass to localhost without ssl --- api/cloud/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/cloud/nginx.conf b/api/cloud/nginx.conf index 9fb3ef5..105cd3a 100644 --- a/api/cloud/nginx.conf +++ b/api/cloud/nginx.conf @@ -51,7 +51,7 @@ http { } location /api { - proxy_pass https://localhost:5003/api; + proxy_pass http://localhost:5003/api; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;