From 99c0da4ecc7171732a776f5f4a57bdf3e23656d6 Mon Sep 17 00:00:00 2001 From: masoodafar-web Date: Sat, 27 Dec 2025 07:42:45 +0330 Subject: [PATCH] feat: add production configuration for JWT and gRPC settings --- .../appsettings.Production.json | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/FrontOffice.BFF.WebApi/appsettings.Production.json diff --git a/src/FrontOffice.BFF.WebApi/appsettings.Production.json b/src/FrontOffice.BFF.WebApi/appsettings.Production.json new file mode 100644 index 0000000..68bce1e --- /dev/null +++ b/src/FrontOffice.BFF.WebApi/appsettings.Production.json @@ -0,0 +1,27 @@ +{ + "JwtSecurityKey": "TvlZVx5TJaHs8e9HgUdGzhGP2CIidoI444nAj+8+g7c=", + "JwtIssuer": "https://localhost", + "JwtAudience": "https://localhost", + "JwtExpiryInDays": 365, + "AllowedHosts": "*", + "Kestrel": { + "EndpointDefaults": { + "Protocols": "Http2" + } + }, + "GrpcChannelOptions": { + "CMSMSAddress": "http://cms-svc", + "PYMSMSAddress": "https://ipg.afrino.co" + }, + "CmsSignalR": { + "HubPath": "/hubs/token-notification" + }, + "Authentication": { + "Authority": "https://ids.domain.com/", + "Audience": "domain_api" + }, + "Seq": { + "ServerUrl": "http://seq-svc:5341", + "ApiKey": "" + } +}