Skip to content

Commit

Permalink
Support for port 5001 in Core
Browse files Browse the repository at this point in the history
  • Loading branch information
juileetikekar committed Nov 17, 2023
1 parent 9af066f commit 3e4d1f9
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions src/AasxServerAspNetCore/appsettings.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
{
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://*:5001"
}
}
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
"Default": "Warning",
"Microsoft.*": "Warning"
}
},
"AllowedHosts": "*"
}
"DatabaseConnection": {
// "ConnectionString": "Host=localhost; Database=AAS; Username=postgres; Password=postres; Include Error Detail=true; Port=5432"
"ConnectionString": "Data Source=$DATAPATH\\database.db"
},
"AllowedHosts": "*",
"SyntaxHighlight": false
}

0 comments on commit 3e4d1f9

Please sign in to comment.