Skip to content

Commit

Permalink
Update HTTPS endpoint URL in appsettings.json
Browse files Browse the repository at this point in the history
Changed the HTTPS endpoint URL configuration from "https://localhost:5002" to "https://*:8443". This modification allows the service to bind to all available network interfaces on port 8443 instead of restricting it to localhost on port 5002.
  • Loading branch information
urumo committed Dec 6, 2024
1 parent e06bf8f commit b76c8b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Argon.Entry/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"Kestrel": {
"Endpoints": {
"Https": {
"Url": "https://localhost:5002",
"Protocols": "Http1AndHttp2AndHttp3"
"Protocols": "Http1AndHttp2AndHttp3",
"Url": "https://*:8443"
}
}
},
Expand Down

0 comments on commit b76c8b9

Please sign in to comment.