Skip to content

Commit

Permalink
Specify default service ports (9001 and 9002) in appsettings.json
Browse files Browse the repository at this point in the history
  • Loading branch information
dluc committed Nov 30, 2023
1 parent 2183864 commit a0f7495
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion service/Service/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -206,5 +206,15 @@
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://*:9001"
},
"Https": {
"Url": "https://*:9002"
}
}
}
}

0 comments on commit a0f7495

Please sign in to comment.