From afbe118c1acf9bcac74146311f862c6d8d014192 Mon Sep 17 00:00:00 2001 From: Rob Holland Date: Thu, 15 Aug 2024 12:32:19 +0100 Subject: [PATCH] Adjust default settings to align with app settings. On machines where localhost points at ipv6 loopback the web server would not be able to connect to the default app listeners, which are on ipv4. --- .env | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.env b/.env index 4e0dc84..1b2f12d 100644 --- a/.env +++ b/.env @@ -1,4 +1,4 @@ -BILLING_API_URL="http://localhost:8081" -ORDER_API_URL="http://localhost:8082" -SHIPMENT_API_URL="http://localhost:8083" -FRAUD_API_URL="http://localhost:8084" +BILLING_API_URL="http://127.0.0.1:8081" +ORDER_API_URL="http://127.0.0.1:8082" +SHIPMENT_API_URL="http://127.0.0.1:8083" +FRAUD_API_URL="http://127.0.0.1:8084"