diff --git a/Hippo/Proxies/appsettings.Development.json b/Hippo/Proxies/appsettings.Development.json index 33149906b..dbf6b35f9 100644 --- a/Hippo/Proxies/appsettings.Development.json +++ b/Hippo/Proxies/appsettings.Development.json @@ -10,10 +10,10 @@ "Kestrel": { "Endpoints": { "Http": { - "Url": "http://localhost:5002" + "Url": "http://0.0.0.0:5002" }, "Https": { - "Url": "https://localhost:5003" + "Url": "https://0.0.0.0:5003" } } } diff --git a/Hippo/Proxies/appsettings.json b/Hippo/Proxies/appsettings.json index 64ed4ba0d..7c3eba2e7 100644 --- a/Hippo/Proxies/appsettings.json +++ b/Hippo/Proxies/appsettings.json @@ -7,10 +7,10 @@ "Kestrel": { "Endpoints": { "Http": { - "Url": "http://localhost:80" + "Url": "http://0.0.0.0:80" }, "Https": { - "Url": "https://localhost:443" + "Url": "https://0.0.0.0:443" } } } diff --git a/Hippo/appsettings.Development.json b/Hippo/appsettings.Development.json index 1851d4f43..3b150107d 100644 --- a/Hippo/appsettings.Development.json +++ b/Hippo/appsettings.Development.json @@ -1,19 +1,29 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Hippo": "Trace", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information" - } - }, - "Jwt": { - "Key": "ceci n'est pas une jeton", - "Issuer": "localhost", - "Audience": "hippofactory.io" - }, - "InMemoryDB": "false", - "ConnectionStrings": { - "Hippo": "Data Source=hippo.db;Cache=Shared" - } -} +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Hippo": "Trace", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "Jwt": { + "Key": "ceci n'est pas une jeton", + "Issuer": "localhost", + "Audience": "hippofactory.io" + }, + "InMemoryDB": "false", + "ConnectionStrings": { + "Hippo": "Data Source=hippo.db;Cache=Shared" + }, + "Kestrel": { + "Endpoints": { + "Http": { + "Url": "http://0.0.0.0:5000" + }, + "Https": { + "Url": "https://0.0.0.0:5001" + } + } + } +} diff --git a/Hippo/appsettings.json b/Hippo/appsettings.json index 23812c505..874b3c00b 100644 --- a/Hippo/appsettings.json +++ b/Hippo/appsettings.json @@ -1,17 +1,27 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information" - } - }, - "Jwt": { - "Key": "CHANGEME", - "Issuer": "example.com", - "Audience": "example.com" - }, - "ConnectionStrings": { - "Hippo": "Host=localhost;Username=postgres;Password=postgres;Database=hippo" - } -} +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "Jwt": { + "Key": "CHANGEME", + "Issuer": "example.com", + "Audience": "example.com" + }, + "ConnectionStrings": { + "Hippo": "Host=localhost;Username=postgres;Password=postgres;Database=hippo" + }, + "Kestrel": { + "Endpoints": { + "Http": { + "Url": "http://0.0.0.0:5000" + }, + "Https": { + "Url": "https://0.0.0.0:5001" + } + } + } +}