faturas_4docs/Webhook 4docs/appsettings.json
Giuliano Paschoalino 6848039309 Alteração da porta do Kestrel para 8662 no appsettings
O endpoint HTTP do Kestrel foi atualizado de 8664 para 8662
no arquivo appsettings.json, ajustando a configuração de URL.
2026-02-10 18:00:02 -03:00

27 lines
633 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
},
"Console": {
"TimestampFormat": "[dd/MM/yy HH:mm] "
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"WebhookDbContext": "Server=192.168.10.248;Port=5432;Database=4docs;User Id=postgres;Password=gds21;"
},
"Kestrel": {
"Endpoints": {
"HttpLocalhost": {
"Url": "http://localhost:8662/"
}
}
},
"PathBase": "/4docs"
}