Skip to content

Commit

Permalink
Adjust default settings to align with app settings.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
robholland committed Aug 15, 2024
1 parent ecd2832 commit afbe118
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .env
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit afbe118

Please # to comment.