asp.net core 中布署 https ( Kestrel)

  1. 准备证书 (购买 或 自己生成)
    假设为 localhost.pfx,保存到某个目录。
    假设密码为 password。

自己生成可参考 http://www.jianshu.com/p/421299336d78

  1. 添加依赖引用(project.json)
 "Microsoft.AspNet.Server.Kestrel.Https": ****
  1. 添加侦听端口(project.json)
"web": "Microsoft.AspNet.Server.Kestrel --server.urls=http://*:8000;https://*:44300"
  1. 加载证书 (startup.cs)
// Configure 
var sslCert = new X509Certificate2(Path.Combine(_environment.ApplicationBasePath, "Certs/localhost.pfx"), "password");
app.UseKestrelHttps( sslCert);

在asp.net core-rc1-final 中 Kestrel 服务器存在一个bug,就是reqeust.schema 不能正确返回值,当为https时返回值是http。 所以还是等 asp.net core rc2的发布吧。

你可能感兴趣的:(asp.net core 中布署 https ( Kestrel))