diff --git a/PushAndPull/Server/appsettings.Development.json b/PushAndPull/Server/appsettings.Development.json index 6d166d2..a9dea80 100644 --- a/PushAndPull/Server/appsettings.Development.json +++ b/PushAndPull/Server/appsettings.Development.json @@ -10,7 +10,7 @@ "AppId": 480 }, "Redis": { - "ConnectionString": "127.0.0.1:6379,abortConnect=false" + "ConnectionString": "localhost:6379,abortConnect=false" }, "KeyVault": { "DbConnectionSecretName": "DbConnection-dev" diff --git a/PushAndPull/Server/appsettings.Production.json b/PushAndPull/Server/appsettings.Production.json index 42bca75..79dbb36 100644 --- a/PushAndPull/Server/appsettings.Production.json +++ b/PushAndPull/Server/appsettings.Production.json @@ -10,7 +10,7 @@ "AppId": 480 }, "Redis": { - "ConnectionString": "127.0.0.1:6379,abortConnect=false" + "ConnectionString": "redis:6379,abortConnect=false" }, "KeyVault": { "DbConnectionSecretName": "DbConnection-prod" diff --git a/PushAndPull/Server/appsettings.json b/PushAndPull/Server/appsettings.json index a5213c0..a206318 100644 --- a/PushAndPull/Server/appsettings.json +++ b/PushAndPull/Server/appsettings.json @@ -13,5 +13,9 @@ "KeyVault": { "Uri": "https://pushandpullsecret.vault.azure.net/", "DbConnectionSecretName": "DbConnection-dev" + }, + "Redis": { + "ConnectionString": "localhost:6379,abortConnect=false" } + }