ASP.NET Core 1.0 部署 HTTPS (.NET Core 1.0)

来源:http://www.cnblogs.com/VicBilibily/archive/2016/07/09/5656309.html
-Advertisement-
Play Games

這兩個月要做一個項目,正逢ASP.Net Core 1.0版本的正式發佈。由於現代互聯網的安全要求,HTTPS加密通訊已成主流,所以就有了這個方案。 本方案啟發於一個舊版的解決方案: ASP.NET Core 1.0 部署 HTTPS (.NET Framework 4.5.1) http://ww ...


這兩個月要做一個項目,正逢ASP.Net Core 1.0版本的正式發佈。由於現代互聯網的安全要求,HTTPS加密通訊已成主流,所以就有了這個方案。

本方案啟發於一個舊版的解決方案:

ASP.NET Core 1.0 部署 HTTPS (.NET Framework 4.5.1)

http://www.cnblogs.com/qin-nz/p/aspnetcore-using-https-on-dnx451.html?utm_source=tuicool&utm_medium=referral

在反覆搜索官方文檔並反覆嘗試以後得出以下解決方案

 

project.json 中,添加引用 Microsoft.AspNetCore.Server.Kestrel.Https

 1 {
 2   "dependencies": {
 3     //跨平臺引用
 4     //"Microsoft.NETCore.App": {
 5     //  "version": "1.0.0",
 6     //  "type": "platform"
 7     //},
 8     "Microsoft.AspNetCore.Diagnostics": "1.0.0",
 9     "Microsoft.AspNetCore.Mvc": "1.0.0",
10     "Microsoft.AspNetCore.Razor.Tools": {
11       "version": "1.0.0-preview2-final",
12       "type": "build"
13     },
14     "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
15     "Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
16     "Microsoft.AspNetCore.Server.Kestrel.Https": "1.0.0",
17     "Microsoft.AspNetCore.StaticFiles": "1.0.0",
18     "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
19     "Microsoft.Extensions.Configuration.Json": "1.0.0",
20     "Microsoft.Extensions.Logging": "1.0.0",
21     "Microsoft.Extensions.Logging.Console": "1.0.0",
22     "Microsoft.Extensions.Logging.Debug": "1.0.0",
23     "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
24     "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0"
25   },
26 
27   "tools": {
28     "BundlerMinifier.Core": "2.0.238",
29     "Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final",
30     "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
31   },
32 
33   "frameworks": {
34     //跨平臺引用
35     //"netcoreapp1.0": {
36     //  "imports": [
37     //    "dotnet5.6",
38     //    "portable-net45+win8"
39     //  ]
40     //}
41     //Windows平臺通用化引用
42     "net452": {}
43   },
44 
45   "buildOptions": {
46     "emitEntryPoint": true,
47     "preserveCompilationContext": true
48   },
49 
50   "runtimeOptions": {
51     "configProperties": {
52       "System.GC.Server": true
53     }
54   },
55 
56   "publishOptions": {
57     "include": [
58       "wwwroot",
59       "Views",
60       "Areas/**/Views",
61       "appsettings.json",
62       "web.config"
63     ],
64     "exclude": [
65       "wwwroot/lib"
66     ]
67   },
68 
69   "scripts": {
70     "prepublish": [ "bower install", "dotnet bundle" ],
71     "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
72   }
73 }
project.json

 在Program.cs中,增加HTTPS訪問埠綁定

 1 using System;
 2 using System.Collections.Generic;
 3 using System.IO;
 4 using System.Linq;
 5 using System.Threading.Tasks;
 6 using Microsoft.AspNetCore.Hosting;
 7 
 8 namespace Demo
 9 {
10     public class Program
11     {
12         public static void Main(string[] args)
13         {
14 
15             var host = new WebHostBuilder()
16                 .UseKestrel()
17                 .UseUrls("http://*", "https://*")
18                 .UseContentRoot(Directory.GetCurrentDirectory())
19                 .UseIISIntegration()
20                 .UseStartup<Startup>()
21                 .Build();
22 
23             host.Run();
24         }
25     }
26 }
Program.cs

Startup.cs 文件中,啟用HTTPS訪問並配置證書路徑及密碼

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Threading.Tasks;
 5 using Microsoft.AspNetCore.Builder;
 6 using Microsoft.AspNetCore.Hosting;
 7 using Microsoft.Extensions.Configuration;
 8 using Microsoft.Extensions.DependencyInjection;
 9 using Microsoft.Extensions.Logging;
10 using System.IO;
11 using Microsoft.AspNetCore.Http;
12 
13 namespace Demo
14 {
15     public class Startup
16     {
17         public Startup(IHostingEnvironment env)
18         {
19             var builder = new ConfigurationBuilder()
20                 .SetBasePath(env.ContentRootPath)
21                 .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
22                 .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true)
23                 .AddEnvironmentVariables();
24             Configuration = builder.Build();
25         }
26 
27         public IConfigurationRoot Configuration { get; }
28 
29         // This method gets called by the runtime. Use this method to add services to the container.
30         public void ConfigureServices(IServiceCollection services)
31         {
32 
33             // Add framework services.
34             services.AddMvc();
35 
36             services.Configure<Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions>(option => {
37                 option.UseHttps(Path.Combine(new DirectoryInfo(Directory.GetCurrentDirectory()).FullName, "cret.pfx"), "pw");
38             });
39 
40 
41 
42         }
43 
44         // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
45         public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
46         {
47             loggerFactory.AddConsole(Configuration.GetSection("Logging"));
48             loggerFactory.AddDebug();
49 
50             if (env.IsDevelopment())
51             {
52                 app.UseDeveloperExceptionPage();
53                 app.UseBrowserLink();
54             }
55             else
56             {
57                 app.UseExceptionHandler("/Home/Error");
58             }
59 
60 
61             app.UseStaticFiles();
62 
63             app.UseMvc(routes =>
64             {
65                 routes.MapRoute(
66                     name: "default",
67                     template: "{controller=App}/{action=Index}/{id?}");
68             });
69 
70             //https://docs.asp.net/en/latest/security/cors.html?highlight=https
71             app.UseCors(builder =>builder.WithOrigins("https://*").AllowAnyHeader());
72 
73             app.Run(run =>
74             {
75                 return run.Response.WriteAsync("Test");
76             });
77 
78         }
79     }
80 }

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 第一部分:安裝redis 現在我們將redis安裝到此目錄 /usr/local/redis 希望將安裝包下載到此目錄 /usr/local/src 那麼安裝過程指令如下: (註:redis官網地址:http://www.redis.io/ 最新版本:3.0.6) 註意上面的最後一行,我們通過PRE ...
  • 1,伺服器系統的安裝會出現錯誤的地方一般都是在Raid 卡驅動 略過Raid 卡配置, 具體 http://jingyan.baidu.com/article/ca41422fddfd201eae99ed30.html 2.準備好2008R2 系統光碟 以下所舉例的是由"用安裝光碟引導啟動安裝"的方 ...
  • 在ASP.NET 2.0 站點根目錄下,只要存在 App_Offline.htm 文件,那麼所有對.aspx的請求都將轉向App_Offline.htm 。而且瀏覽器的地址欄顯示的是所請求的.aspx的URL。這樣當我們的站點需要維護時,只要把App_Offline.htm 拷貝到站點根目錄下即可。 ...
  • 3. 記憶體數據 前面我們知道了,記憶體是按位元組編址,每個地址的存儲單元可以存放8bit的數據。我們也知道CPU通過記憶體地址獲取一條指令和數據,而他們存在存儲單元中。現在就有一個問題。我們的數據和指令不可能剛好是8bit,如果小於8位,沒什麼問題,頂多是浪費幾位(或許按位元組編址是為了節省記憶體空間考慮)。 ...
  • 隨著Linux程式的增多,軟體的安裝過程中經常出現許多令人頭疼的問題,比如,重覆機械的勞動,今天來分享一些解決方法.. ...
  • 我會用幾篇博客總結一下在Linux中進程之間通信的幾種方法,我會把這個開頭的摘要部分在這個系列的每篇博客中都打出來 進程之間通信的方式 管道 消息隊列 信號 信號量 共用存儲區 套接字(socket) 進程間通信(一)—管道傳送門:http://www.cnblogs.com/lenomirei/p ...
  • 題目描述 若某個家族人員過於龐大,要判斷兩個是否是親戚,確實還很不容易,現在給出某個親戚關係圖,求任意給出的兩個人是否具有親戚關係。 規定:x和y是親戚,y和z是親戚,那麼x和z也是親戚。如果x,y是親戚,那麼x的親戚都是y的親戚,y的親戚也都是x的親戚。 輸入輸出格式 輸入描述: 第一行:三個整數 ...
  • 0. 目錄 C#6 新增特性目錄 1. 老版本的代碼 早C#3中引入的集合初始化器,可是讓我們用上面的語法來在聲明一個字典或者集合的時候立即初始化一些項進去,其實在C#3中這是個語法糖,實質編譯後的結果是調用字典或者集合的Add方法逐一添加這些項。但是有一點小小的不直觀。先看看這個版的IL吧: 本質 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...