From 3104d5eb074fad2bb0f76bbb302bf9a1bc46a97d Mon Sep 17 00:00:00 2001 From: Torstein Lundervold Nesheim Date: Tue, 28 Jun 2022 16:26:28 +0200 Subject: [PATCH] Add settings for production --- backend/api/appsettings.Production.json | 30 +++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 backend/api/appsettings.Production.json diff --git a/backend/api/appsettings.Production.json b/backend/api/appsettings.Production.json new file mode 100644 index 000000000..ec07e71b0 --- /dev/null +++ b/backend/api/appsettings.Production.json @@ -0,0 +1,30 @@ +{ + "AzureAd": { + "ClientId": "ea4c7b92-47b3-45fb-bd25-a8070f0c495c", + "ClientSecret": "Fill in ASP.NET Secret Manager" + }, + "KeyVault": { + "VaultUri": "https://PlaceboFlotillaDevKv.vault.azure.net/" + }, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Warning" + } + }, + "AllowedHosts": "*", + "AllowedOrigins": "http://localhost:3001", + "Mqtt": { + "Host": "localhost", + "Port": 1883, + "Username": "flotilla", + "Topics": [ + "isar/+/mission", + "isar/+/task", + "isar/+/step" + ], + "MaxRetryAttempts": 15, + "ShouldFailOnMaxRetries": true + } +}