Browse Source

updated postgress and redis connection strings

pull/42/head
yusuf karatoprak 5 years ago
parent
commit
a285b0c74f
  1. 2
      manifests/deployment.eventhub.httpapi.host.yml
  2. 2
      src/EventHub.BackgroundServices/appsettings.json
  3. 2
      src/EventHub.DbMigrator/appsettings.json
  4. 2
      src/EventHub.HttpApi.Host/appsettings.json
  5. 2
      src/EventHub.IdentityServer/appsettings.json

2
manifests/deployment.eventhub.httpapi.host.yml

@ -13,7 +13,7 @@ spec:
spec:
containers:
- name: volosoft-eventhub-httpapi-host-container
image: voloeventhubhttpapihost.azurecr.io/voloeventhubhttpapihost:latest
image: voloeventhubhttpapihost.azurecr.io/voloeventhubhttpapihost
imagePullPolicy: Always
resources:
limits:

2
src/EventHub.BackgroundServices/appsettings.json

@ -1,6 +1,6 @@
{
"ConnectionStrings": {
"Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=EventHub;Trusted_Connection=True"
"Default": "Host=localhost;Database=EventHub;Username=root;Password=root;Port=5432"
},
"Redis": {
"Configuration": "127.0.0.1"

2
src/EventHub.DbMigrator/appsettings.json

@ -1,6 +1,6 @@
{
"ConnectionStrings": {
"Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=EventHub;Trusted_Connection=True"
"Default": "Host=localhost;Database=EventHub;Username=root;Password=root;Port=5432"
},
"IdentityServer": {
"Clients": {

2
src/EventHub.HttpApi.Host/appsettings.json

@ -3,7 +3,7 @@
"CorsOrigins": "https://*.EventHub.com,https://localhost:44307,https://localhost:44308"
},
"ConnectionStrings": {
"Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=EventHub;Trusted_Connection=True"
"Default": "Host=localhost;Database=EventHub;Username=root;Password=root;Port=5432"
},
"Redis": {
"Configuration": "127.0.0.1"

2
src/EventHub.IdentityServer/appsettings.json

@ -5,7 +5,7 @@
"RedirectAllowedUrls": "http://localhost:4200,https://localhost:44307"
},
"ConnectionStrings": {
"Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=EventHub;Trusted_Connection=True"
"Default": "Host=localhost;Database=EventHub;Username=root;Password=root;Port=5432"
},
"Redis": {
"Configuration": "127.0.0.1"

Loading…
Cancel
Save