搜索:HTTPS, 为您找到相关结果约 1114条结果, 这是第 0 -10 条。 [搜索用时:22 毫秒]

全站部署https实战系列(2)-全站HTTPS原理

  1.HTTPS 基础 HTTPS(Secure Hypertext Transfer Protocol) 安全超文本传输协议 它是一个安全通信通道,它基于 HTTP 开发,用于在客户计算机和服务器之间交换信息5.HTTPS 性能与优化5.1 HTTPS 性能损耗前文讨论了 HTTPS 原理与优势:身份验证、信息加密与完整性校验等,且未对 TCP 和 HTTP 协议做任何修改。因此,RSA 的解密能力是当前困扰 HTTPS 接入的主要难题。5.2 HTTPS 接入优化1.CDN 接入 HTTPS 增加的延时主要是传输延时 RTT,RTT 的特点是节点越近延时越小,CDN 天然离用户最近,因此选择使用 CDN 作为 HTTPS 接入的入口当前也是 CDN 用于大规模HTTPS接入的解决方案之一。

7/1/2017 7400字 ViewCount:2491 Score: 10.424797; HTTPS
https://www.iaspnetcore.com/Blog/BlogPost/59570bac84cd452eecd219cc/total-station-deployment-of-https-combat-series-2-principle-of-total-station-https

ASP.NET Core 1.0 部署 HTTPS增加HTTPS访问端口绑定

由于现代互联网的安全要求,HTTPS加密通讯已成主流,所以就有了这个方案。本方案启发于一个旧版的解决方案: ASP.NET Core 1.0 部署 HTTPS (.NET Framework 4.5.1) http://www.cnblogs.com/qin-nz/p/aspnetcore-using-https-on-dnx451utm_medium=referral 在反复搜索官方文档并反复尝试以后得出以下解决方案 在project.json 中,添加引用 Microsoft.AspNetCore.Server.Kestrel.Https;    });    //https://docs.asp.net/en/latest/security/cors.html?highlight=https    app.UseCors(builder =>builder.WithOrigins("https://*").AllowAnyHeader

7/31/2016 138字 ViewCount:1595 Score: 9.825795; HTTPS
https://www.iaspnetcore.com/Blog/BlogPost/579e6c7684cd4632c4b3e601/aspnet-core-10-deployment-of-https-to-increase-https-access-port-binding

全站部署https实战系列(5)-webserver+nginx配置https 和http转发

4431端口 其他主机转发到cn 阿里云主机4431端口,会出现未备案提示: http://batit.aliyun.com/alww.html 2.转发思路 http 转发 Browser(https域名转发 Browser(http://stockso.com) ---> Nginx (server port 443 ssl)----> HTTP ----> Kestrel 配置https不带www域名转发 Browser(https://stockso.com) ---> Nginx (server port 443 ssl)----> HTTP ----> Kestrel# https://www.nginx.com/resources/wiki/start/ # https://www.nginx.com/resources/wiki/start/topics/# See: https://bugs.debian.org/765782 # # Self signed certs generated by the ssl-cert package

12/14/2016 118字 ViewCount:2682 Score: 9.43949; Nginx HTTPS
https://www.iaspnetcore.com/Blog/BlogPost/5851033c84cd452a800afd59/deploying-https-real-world-series-5-webservernginx-configuration-for-https-and-http-forwarding

Is there a way to use an HTTPS proxy in .NET 6

I need to check if certain HTTPS proxies are working。somebody has used the following code to use the HTTPS proxy successfully   var proxy = new WebProxy{ Address = new Uri($"https://proxy-server:port"), BypassProxyOnLocalresult = await client.GetStringAsync("path"); Console.WriteLine(result);   come from:https://learn.microsoft.com/en-us/answers/questions/1181349/is-there-a-way-to-use-an-https-proxy-in-net-6.

3/15/2024 0字 ViewCount:56 Score: 9.076656; BsonNull
https://www.iaspnetcore.com/Blog/BlogPost/65f3b33a4cc16d0284d47787/is-there-a-way-to-use-an-https-proxy-in-net-6

用FiddlerCoreAPI开源项目开发截获HTTPS流量

上一篇文章简单简单分析了fiddlercore自带样例的代码,本篇文章进入主题,介绍如何使用fiddlercore截获HTTPS流量。当时学习完样例代码后,我觉得结合注释来抓HTTPS的包应该也很简单,结果按照注释的提示修改了下代码后,还是抓不到,反复尝试了很多方法都没有解决,在google上搜了搜有人说可能是证书的问题,但也没有给出具体的解决办法翻了翻帮助文档发现还真有这样的函数,叫做createRootCert(),而且函数说明中写道: “Create a self-signed certificate to use for HTTPSFiddler.CertMaker.GetRootCertificate();//Returns the Root certificate that Fiddler uses to generate per-site certificates used for HTTPS

12/26/2017 448字 ViewCount:2161 Score: 8.354193; Website Tools HTTPS
https://www.iaspnetcore.com/Blog/BlogPost/5a41f67a2d485225f43a657e/interception-of-https-traffic-with-fiddler-core-api-open-source-project-development

How to Configure Nginx force HTTP to redirect to HTTPS Step by Step?

This guide will show you how to redirect HTTP to HTTPS using Nginx.(server port 443 ssl)----> HTTP ----> Kestrel 配置https不带www域名转发 Browser(https://example.com) -; To enforce an HTTP to HTTPS redirect, you need to edit the Nginx configuration file.://$host$request_uri; #重定向至https访问。~* ^www\.) { return 301 https://www.

1/17/2021 34字 ViewCount:1291 Score: 8.182919; Nginx HTTPS
https://www.iaspnetcore.com/Blog/BlogPost/60041bcfed7d2e01eabfee0a/how-to-configure-nginx-force-http-to-redirect-to-https-step-by-step

全站部署https实战系列之目录和总结

step 2、SSL证书安装 在服务器上安装证书 step 3、生成域名证书 为域名生成证书 step 4、HTTPS服务器配置 修改nginx配置,将http//:重定向到https://  Table of Contents 第一部分:SSL证书种类简介 第二部分:安装Let’s Encrypt免费证书 第三部分:nginx配置https 和http转发第四部分:检查网站证书   第一部分:SSL证书种类简介 全站部署https系列(1)-证书的种类及选择 第二部分:安装Let’s Encrypt免费证书 全站部署https和http转发   全站部署https实战系列(5)-nginx配置https 和http转发 第四部分:检查网站证书 全站部署https实战系列(7)- 在线检查网站证书     HTTPS服务器配置目录 https://pay.weixin.qq.com/wiki/doc/api/wxa/wxa_api.php?

7/2/2016 264字 ViewCount:1974 Score: 8.17536; HTTPS
https://www.iaspnetcore.com/Blog/BlogPost/5777b77484cd4722d85e0f08/directory-and-summary-of-https-practical-series-deployed-on-the-whole-site

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

在ASP.NET Core中,如果在Kestrel中想使用HTTPS对站点进行加密传输,可以按照如下方式 申请证书 这一步就不详细说了,有免费的和收费的,申请完成之后会给你一个*.pfx结尾的文件。添加NuGet包 nuget中查找然后再程序中添加引用Microsoft.AspNetCore.Server.Kestrel.Https 配置 把*.pfx结尾的文件拷贝的程序的Web根目录,然后修改x.UseHttps(certificate); }; } } 然后命令行窗口运行dotnet xxx.dll --server.urls https本文地址:http://www.cnblogs.com/savorboard/p/aspnetcore-kestrel-https.html作者博客:Savorboard  ..

4/24/2017 128字 ViewCount:1937 Score: 8.109894; HTTPS
https://www.iaspnetcore.com/Blog/BlogPost/58fda88e84cd45328c5c1f0a/using-https-ssl-in-aspnet-core-kestrel

How to delete one project in https://username.visualstudio.com

 1.Enter your Poject Home   https://username.visualstudio.com/_projects   2.choice setting

12/21/2017 0字 ViewCount:1441 Score: 7.9650297; Visual Studio
https://www.iaspnetcore.com/Blog/BlogPost/5a3c25752d485225f413c92d/how-to-delete-one-project-in-httpsusernamevisualstudiocom