在我的客户站点上运行IIS SEO工具包时,我收到以下错误:
The link to 'https://www.my-client-website.censored/' has resulted in an error.
Details: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.HttpWebRequest.GetResponse()
at Microsoft.Web.Management.SEO.Crawler.UrlDownloader.OnGetContent(CrawlerProcessContext context)
该站点由nginx和rails提供服务,我在日志中没有发现任何错误。目前,我不知道如何诊断此问题或其原因。有没有人有关于如何进一步解决这个问题的建议?
发布于 2017-08-31 23:07:31
我的网站有两个问题:
一个是我将https://domain重定向到https://www.domain,另一个是IIS不支持TLSv1.2,而我的nginx被配置为只支持TLSv1.2。因此,我不得不临时注释重定向规则,并添加带有相应密码的TLSv1支持,以便抓取网站。
https://stackoverflow.com/questions/45842200
复制相似问题