Browse Source

1. Specified SSL port

2. Use 64bit IIS Express bitness
pull/733/head
rafsanulhasan 6 years ago
parent
commit
661f537dfd
1 changed files with 17 additions and 16 deletions
  1. +17
    -16
      src/Web/WebSPA/Properties/launchSettings.json

+ 17
- 16
src/Web/WebSPA/Properties/launchSettings.json View File

@ -1,18 +1,19 @@
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:58018/",
"sslPort": 0
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Production"
}
}
}
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:58018/",
"sslPort": 4104
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Production"
},
"use64Bit": true
}
}
}

Loading…
Cancel
Save