inital
This commit is contained in:
67
OCPP.Core.Management/appsettings.json
Normal file
67
OCPP.Core.Management/appsettings.json
Normal file
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"Logging": {
|
||||
"File": {
|
||||
"BasePath": "Logs",
|
||||
"FileAccessMode": "KeepOpenAndAutoFlush",
|
||||
"FileEncodingName": "utf-8",
|
||||
"DateFormat": "yyyyMMdd",
|
||||
"CounterFormat": "000",
|
||||
"MaxFileSize": 1048576,
|
||||
"LogLevel": {
|
||||
"OCPP": "Trace",
|
||||
"Microsoft": "Warning",
|
||||
"Default": "Debug"
|
||||
},
|
||||
"IncludeScopes": false,
|
||||
"MaxQueueSize": 10,
|
||||
"Files": [
|
||||
{
|
||||
"Path": "OCPP.Core.Management-<counter>.log",
|
||||
"CounterFormat": "00"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
"LogLevel": {
|
||||
"Default": "Information"
|
||||
},
|
||||
|
||||
"AllowedHosts": "*",
|
||||
|
||||
"ConnectionStrings": {
|
||||
//"SQLite": "Filename=.\\..\\SQLite\\OCPP.Core.sqlite;"
|
||||
"SqlServer": "Server=.;Database=OCPP.Core;Trusted_Connection=True;Encrypt=false;TrustServerCertificate=false"
|
||||
},
|
||||
|
||||
"ServerApiUrl": "http://localhost:8081/API",
|
||||
"ApiKey": "36029A5F-B736-4DA9-AE46-D66847C9062C",
|
||||
|
||||
"Users": [
|
||||
{
|
||||
"Username": "admin",
|
||||
"Password": "t3st",
|
||||
"Administrator": true
|
||||
},
|
||||
{
|
||||
"Username": "user",
|
||||
"Password": "t3st",
|
||||
"Administrator": false
|
||||
}
|
||||
],
|
||||
|
||||
"Kestrel": {
|
||||
"Endpoints": {
|
||||
"Http": {
|
||||
"Url": "http://localhost:8082"
|
||||
},
|
||||
"HttpsInlineCertFile": {
|
||||
"Url": "https://localhost:8092",
|
||||
"Certificate": {
|
||||
"Path": "localhost.pfx",
|
||||
"Password": "OCPP.Core"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user