From 0691771d1b349ede3ee04b561f62cf436fcfe0e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20R=C3=A9?= Date: Mon, 20 Jul 2026 17:42:37 +0200 Subject: [PATCH] Put back allowed origin in provision MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Émile Ré --- contrib/lima/provision.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/lima/provision.sh b/contrib/lima/provision.sh index 79211c604..7ef7a0c6d 100755 --- a/contrib/lima/provision.sh +++ b/contrib/lima/provision.sh @@ -120,7 +120,7 @@ PROBOD_AUTH_COOKIE_SECRET="this-is-a-secure-secret-for-cookie-signing-at-least-3 PROBOD_AUTH_PASSWORD_PEPPER="this-is-a-secure-pepper-for-password-hashing-at-least-32-bytes" \ PROBOD_ENCRYPTION_KEY="thisisnotasecretAAAAAAAAAAAAAAAAAAAAAAAAAAA=" \ PROBOD_OAUTH2_SERVER_SIGNING_KEY="$(cat "${OAUTH2_SIGNING_KEY_PATH}")" \ -PROBOD_API_CORS_ALLOWED_ORIGINS="http://${VM_IP}:8080,http://${VM_IP}:5173,http://${VM_IP}:5174" \ +PROBOD_API_CORS_ALLOWED_ORIGINS="http://${VM_IP}:8080,http://${VM_IP}:5173,http://${VM_IP}:5174,http://${VM_IP}:5175" \ PROBOD_AWS_ENDPOINT="http://127.0.0.1:8333" \ PROBOD_AWS_ACCESS_KEY_ID="probod" \ PROBOD_AWS_SECRET_ACCESS_KEY="thisisnotasecret" \