You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
executaveis/GCI.Maintenance/appsettings.json

62 lines
1.8 KiB
JSON

{
"ConnectionStrings": {
"DefaultConnection": "Data Source=localhost\\sql2019; Initial Catalog=GCIMaintenance; User ID=sa; Password=123qwe; MultipleActiveResultSets=True;"
},
"IdentityServer": {
// https://docs.microsoft.com/en-us/aspnet/core/security/authentication/identity-api-authorization?view=aspnetcore-3.1#other-configuration-options
"Key": {
"Type": "Store",
"StoreName": "My",
"StoreLocation": "LocalMachine",
"Name": "CN=denariu.ddns.net"
}
},
"Data": {
"AuthorizationUrl": "http://denariu.ddns.net:5050",
"Documents": {
"Providers": [
{
"Name": "Documents",
"Provider": "FilesystemDocumentProvider",
"Options": {
"Repository": "\\\\servidordenariu\\d$\\GCI_DocumentosExternos\\Maintenance\\Documents"
}
},
{
"Name": "Images",
"Provider": "FilesystemDocumentProvider",
"Options": {
"Repository": "\\\\servidordenariu\\d$\\GCI_DocumentosExternos\\Maintenance\\Images"
}
}
]
}
},
"Serilog": {
"MinimumLevel": {
"Default": "Debug",
"Override": {
"System": "Information",
"Microsoft": "Information"
}
},
"WriteTo": [
{ "Name": "Console" },
{ "Name": "Debug" },
{
"Name": "File",
"RestrictedToMinimumLevel": "LogEventLevel.Information",
"Args": {
"path": "C:\\TempDenariu\\Logs\\gci.portaltecnicos.log",
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss} [{Level:u3}] {Message:lj}{NewLine}{Exception}",
"rollOnFileSizeLimit": "true",
"fileSizeLimitBytes": "20971520",
"rollingInterval": "Day",
"retainedFileCountLimit": "150"
}
}
],
"Enrich": [ "FromLogContext" ]
}
}