From 614859a8bc8afb3ab7b2be4ae674127024a5606a Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 26 Aug 2020 15:09:51 -0400 Subject: [PATCH] add missing baseServiceUris --- src/Admin/appsettings.Production.json | 4 +++- src/Admin/appsettings.json | 4 +++- src/Api/appsettings.Production.json | 4 +++- src/Api/appsettings.json | 4 +++- src/Billing/appsettings.Production.json | 4 +++- src/Billing/appsettings.json | 4 +++- src/Events/appsettings.Production.json | 4 +++- src/Events/appsettings.json | 4 +++- src/Identity/appsettings.Production.json | 4 +++- src/Identity/appsettings.json | 4 +++- src/Notifications/appsettings.Production.json | 4 +++- src/Notifications/appsettings.json | 4 +++- 12 files changed, 36 insertions(+), 12 deletions(-) diff --git a/src/Admin/appsettings.Production.json b/src/Admin/appsettings.Production.json index 6c4313dcd0..a76503564e 100644 --- a/src/Admin/appsettings.Production.json +++ b/src/Admin/appsettings.Production.json @@ -7,12 +7,14 @@ "admin": "https://admin.bitwarden.com", "notifications": "https://notifications.bitwarden.com", "sso": "https://sso.bitwarden.com", + "portal": "http://portal.bitwarden.com", "internalNotifications": "https://notifications.bitwarden.com", "internalAdmin": "https://admin.bitwarden.com", "internalIdentity": "https://identity.bitwarden.com", "internalApi": "https://api.bitwarden.com", "internalVault": "https://vault.bitwarden.com", - "internalSso": "https://sso.bitwarden.com" + "internalSso": "https://sso.bitwarden.com", + "internalPortal": "https://portal.bitwarden.com" }, "braintree": { "production": true diff --git a/src/Admin/appsettings.json b/src/Admin/appsettings.json index e5e7f46091..6e374120e1 100644 --- a/src/Admin/appsettings.json +++ b/src/Admin/appsettings.json @@ -11,12 +11,14 @@ "admin": "http://localhost:62911", "notifications": "http://localhost:61840", "sso": "http://localhost:51822", + "portal": "http://localhost:52313", "internalNotifications": "http://localhost:61840", "internalAdmin": "http://localhost:62911", "internalIdentity": "http://localhost:33656", "internalApi": "http://localhost:4000", "internalVault": "http://localhost:4001", - "internalSso": "http://localhost:51822" + "internalSso": "http://localhost:51822", + "internalPortal": "http://localhost:52313" }, "sqlServer": { "connectionString": "SECRET" diff --git a/src/Api/appsettings.Production.json b/src/Api/appsettings.Production.json index 3d13307136..5fd1707026 100644 --- a/src/Api/appsettings.Production.json +++ b/src/Api/appsettings.Production.json @@ -7,12 +7,14 @@ "admin": "https://admin.bitwarden.com", "notifications": "https://notifications.bitwarden.com", "sso": "https://sso.bitwarden.com", + "portal": "http://portal.bitwarden.com", "internalNotifications": "https://notifications.bitwarden.com", "internalAdmin": "https://admin.bitwarden.com", "internalIdentity": "https://identity.bitwarden.com", "internalApi": "https://api.bitwarden.com", "internalVault": "https://vault.bitwarden.com", - "internalSso": "https://sso.bitwarden.com" + "internalSso": "https://sso.bitwarden.com", + "internalPortal": "https://portal.bitwarden.com" }, "braintree": { "production": true diff --git a/src/Api/appsettings.json b/src/Api/appsettings.json index c90737301c..af95b861e3 100644 --- a/src/Api/appsettings.json +++ b/src/Api/appsettings.json @@ -11,12 +11,14 @@ "admin": "http://localhost:62911", "notifications": "http://localhost:61840", "sso": "http://localhost:51822", + "portal": "http://localhost:52313", "internalNotifications": "http://localhost:61840", "internalAdmin": "http://localhost:62911", "internalIdentity": "http://localhost:33656", "internalApi": "http://localhost:4000", "internalVault": "http://localhost:4001", - "internalSso": "http://localhost:51822" + "internalSso": "http://localhost:51822", + "internalPortal": "http://localhost:52313" }, "sqlServer": { "connectionString": "SECRET" diff --git a/src/Billing/appsettings.Production.json b/src/Billing/appsettings.Production.json index 9c444bb66f..38e4e3513e 100644 --- a/src/Billing/appsettings.Production.json +++ b/src/Billing/appsettings.Production.json @@ -7,12 +7,14 @@ "admin": "https://admin.bitwarden.com", "notifications": "https://notifications.bitwarden.com", "sso": "https://sso.bitwarden.com", + "portal": "http://portal.bitwarden.com", "internalNotifications": "https://notifications.bitwarden.com", "internalAdmin": "https://admin.bitwarden.com", "internalIdentity": "https://identity.bitwarden.com", "internalApi": "https://api.bitwarden.com", "internalVault": "https://vault.bitwarden.com", - "internalSso": "https://sso.bitwarden.com" + "internalSso": "https://sso.bitwarden.com", + "internalPortal": "https://portal.bitwarden.com" }, "braintree": { "production": true diff --git a/src/Billing/appsettings.json b/src/Billing/appsettings.json index 31904b911b..5231c5cf8f 100644 --- a/src/Billing/appsettings.json +++ b/src/Billing/appsettings.json @@ -11,12 +11,14 @@ "admin": "http://localhost:62911", "notifications": "http://localhost:61840", "sso": "http://localhost:51822", + "portal": "http://localhost:52313", "internalNotifications": "http://localhost:61840", "internalAdmin": "http://localhost:62911", "internalIdentity": "http://localhost:33656", "internalApi": "http://localhost:4000", "internalVault": "http://localhost:4001", - "internalSso": "http://localhost:51822" + "internalSso": "http://localhost:51822", + "internalPortal": "http://localhost:52313" }, "sqlServer": { "connectionString": "SECRET" diff --git a/src/Events/appsettings.Production.json b/src/Events/appsettings.Production.json index 1f85555af2..6b3530015f 100644 --- a/src/Events/appsettings.Production.json +++ b/src/Events/appsettings.Production.json @@ -7,12 +7,14 @@ "admin": "https://admin.bitwarden.com", "notifications": "https://notifications.bitwarden.com", "sso": "https://sso.bitwarden.com", + "portal": "http://portal.bitwarden.com", "internalNotifications": "https://notifications.bitwarden.com", "internalAdmin": "https://admin.bitwarden.com", "internalIdentity": "https://identity.bitwarden.com", "internalApi": "https://api.bitwarden.com", "internalVault": "https://vault.bitwarden.com", - "internalSso": "https://sso.bitwarden.com" + "internalSso": "https://sso.bitwarden.com", + "internalPortal": "https://portal.bitwarden.com" } } } diff --git a/src/Events/appsettings.json b/src/Events/appsettings.json index a3d2fcf88e..463a42d39a 100644 --- a/src/Events/appsettings.json +++ b/src/Events/appsettings.json @@ -9,12 +9,14 @@ "admin": "http://localhost:62911", "notifications": "http://localhost:61840", "sso": "http://localhost:51822", + "portal": "http://localhost:52313", "internalNotifications": "http://localhost:61840", "internalAdmin": "http://localhost:62911", "internalIdentity": "http://localhost:33656", "internalApi": "http://localhost:4000", "internalVault": "http://localhost:4001", - "internalSso": "http://localhost:51822" + "internalSso": "http://localhost:51822", + "internalPortal": "http://localhost:52313" }, "sqlServer": { "connectionString": "SECRET" diff --git a/src/Identity/appsettings.Production.json b/src/Identity/appsettings.Production.json index 6c4313dcd0..a76503564e 100644 --- a/src/Identity/appsettings.Production.json +++ b/src/Identity/appsettings.Production.json @@ -7,12 +7,14 @@ "admin": "https://admin.bitwarden.com", "notifications": "https://notifications.bitwarden.com", "sso": "https://sso.bitwarden.com", + "portal": "http://portal.bitwarden.com", "internalNotifications": "https://notifications.bitwarden.com", "internalAdmin": "https://admin.bitwarden.com", "internalIdentity": "https://identity.bitwarden.com", "internalApi": "https://api.bitwarden.com", "internalVault": "https://vault.bitwarden.com", - "internalSso": "https://sso.bitwarden.com" + "internalSso": "https://sso.bitwarden.com", + "internalPortal": "https://portal.bitwarden.com" }, "braintree": { "production": true diff --git a/src/Identity/appsettings.json b/src/Identity/appsettings.json index 4f5e2082f7..d8c768e46c 100644 --- a/src/Identity/appsettings.json +++ b/src/Identity/appsettings.json @@ -12,12 +12,14 @@ "admin": "http://localhost:62911", "notifications": "http://localhost:61840", "sso": "http://localhost:51822", + "portal": "http://localhost:52313", "internalNotifications": "http://localhost:61840", "internalAdmin": "http://localhost:62911", "internalIdentity": "http://localhost:33656", "internalApi": "http://localhost:4000", "internalVault": "http://localhost:4001", - "internalSso": "http://localhost:51822" + "internalSso": "http://localhost:51822", + "internalPortal": "http://localhost:52313" }, "sqlServer": { "connectionString": "SECRET" diff --git a/src/Notifications/appsettings.Production.json b/src/Notifications/appsettings.Production.json index 1f85555af2..6b3530015f 100644 --- a/src/Notifications/appsettings.Production.json +++ b/src/Notifications/appsettings.Production.json @@ -7,12 +7,14 @@ "admin": "https://admin.bitwarden.com", "notifications": "https://notifications.bitwarden.com", "sso": "https://sso.bitwarden.com", + "portal": "http://portal.bitwarden.com", "internalNotifications": "https://notifications.bitwarden.com", "internalAdmin": "https://admin.bitwarden.com", "internalIdentity": "https://identity.bitwarden.com", "internalApi": "https://api.bitwarden.com", "internalVault": "https://vault.bitwarden.com", - "internalSso": "https://sso.bitwarden.com" + "internalSso": "https://sso.bitwarden.com", + "internalPortal": "https://portal.bitwarden.com" } } } diff --git a/src/Notifications/appsettings.json b/src/Notifications/appsettings.json index 029280a38b..51d09bc4a6 100644 --- a/src/Notifications/appsettings.json +++ b/src/Notifications/appsettings.json @@ -9,12 +9,14 @@ "admin": "http://localhost:62911", "notifications": "http://localhost:61840", "sso": "http://localhost:51822", + "portal": "http://localhost:52313", "internalNotifications": "http://localhost:61840", "internalAdmin": "http://localhost:62911", "internalIdentity": "http://localhost:33656", "internalApi": "http://localhost:4000", "internalVault": "http://localhost:4001", - "internalSso": "http://localhost:51822" + "internalSso": "http://localhost:51822", + "internalPortal": "http://localhost:52313" }, "sqlServer": { "connectionString": "SECRET"