Skip to content

Commit e02b371

Browse files
authored
Change default port for dashboard applicationUrl (#1853)
Windows allows systems to exclude specific port ranges, after which attempts to bind them will fail. The ranges will vary from machine to machine, and can be viewed with the command `netsh interface ipv4 show excludedportrange protocol=tcp`. We're seeing users hitting issues with port 63824. While the excluded ranges will vary from machine to machine, it seems like these higher numbers are more likely to be excluded. This change moves the ports lower, which should help alleviate this issue.
1 parent 1a9fd21 commit e02b371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Aspire.Dashboard/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"environmentVariables": {
77
"ASPNETCORE_ENVIRONMENT": "Development"
88
},
9-
"applicationUrl": "https://localhost:63824;http://localhost:15888"
9+
"applicationUrl": "https://localhost:15889;http://localhost:15888"
1010
}
1111
}
1212
}

0 commit comments

Comments
 (0)