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 を実行します。
以上がこの記事の全内容です。皆さんの学習に役立つことを願っています。また、皆さんも PHP 中国語 Web サイトをサポートしていただければ幸いです。
ASP.NET Core Kestrel での HTTPS (SSL) の使用に関連するその他の記事については、PHP 中国語 Web サイトに注目してください。