From 51129704a0b2b827ca68e3e4a7ff83d80d01afc5 Mon Sep 17 00:00:00 2001 From: masoodafar-web Date: Sat, 27 Dec 2025 02:56:24 +0330 Subject: [PATCH] feat: add staging configuration with gateway and logging settings --- src/FrontOffice.Main/appsettings.Staging.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/FrontOffice.Main/appsettings.Staging.json diff --git a/src/FrontOffice.Main/appsettings.Staging.json b/src/FrontOffice.Main/appsettings.Staging.json new file mode 100644 index 0000000..548a9eb --- /dev/null +++ b/src/FrontOffice.Main/appsettings.Staging.json @@ -0,0 +1,18 @@ +{ + "GwUrl": "https://frontoffice-bff.foursat.afrino.co", + "DownloadUrl": "https://dl.afrino.co", + "EncryptionSettings": { + "Key": "kmcQ3XTmH4mrdh8VHziuscyf8LLYjG//Kyni81nH/0E=", + "IV": "1wyF3Tt142MOkCpIyCxh/g==" + }, + "SignalR": { + "HubPath": "/hubs/token-relay" + }, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +}