好的,所以我以前能够在项目属性对话框中更改SSL端口号,但在asp.net 5 RC1更新之后,SSL字段是只读的:
当我尝试直接编辑.xproj时,它会忽略SSLPort值:
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
<DevelopmentServerPort>17204</DevelopmentServerPort>
<SSLPort>44303</SSLPort>
</PropertyGroup>
当我更改绑定并启动项目时,它还会将我的应用主机配置文件($ [solutionDir] .vs \ config \ applicationhost.config)中的端口重置为原始值。
<site name="WebApplication1" id="8">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\WebApplication1\wwwroot" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:17833:localhost" />
<binding protocol="https" bindingInformation="*:44303:localhost" />
</bindings>
</site>
是什么给出的? Visual Studio从哪里获取此值,以及如何更改它?
答案 0 :(得分:12)
在launchSettings.json
文件夹下打开./Properties
。 iisSettings中的 int 值&gt; iisExpress&gt; sslPort是它的读物。您可以将该值更改为您想要的任何值。
{
"iisSettings": {
"iisExpress": {
"sslPort": <ssl-port-value>
}
}
}