ASP.NET Core Kestrel 中使用 HTTPS (SSL)

來源:互聯網
上載者:User
在ASP.NET Core中,如果在Kestrel中想使用HTTPS對網站進行加密傳輸,可以按照如下方式

申請認證

這一步就不詳細說了,有免費的和收費的,申請完成之後會給你一個*.pfx結尾的檔案。

添加NuGet包

nuget中尋找然後再程式中添加引用Microsoft.AspNetCore.Server.Kestrel.Https

配置

把*.pfx結尾的檔案拷貝的程式的Web根目錄,然後修改Programs.cs檔案:

public class Program{ public static void Main(string[] args) {  var config = new ConfigurationBuilder().AddCommandLine(args).AddEnvironmentVariables("ASPNETCORE_").Build();   var host =   new WebHostBuilder().UseConfiguration(config).UseKestrel(ConfigHttps()).UseContentRoot(    Directory.GetCurrentDirectory()).UseIISIntegration().UseStartup<Startup>().Build();     host.Run(); }  private static Action<KestrelServerOptions> ConfigHttps() {  return x => {   var pfxFile = Path.Combine(Directory.GetCurrentDirectory(), "*.pfx");   //password 填寫申請的密鑰   var certificate = new X509Certificate2(pfxFile, "password");   x.UseHttps(certificate);  }; }}

然後命令列視窗運行dotnet xxx.dll --server.urls https://www.example.com:port即可。

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援topic.alibabacloud.com。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.