gpt4 book ai didi

asp.net - 带有用于 cookie 的 requireSSL 的 Sitecore

转载 作者:行者123 更新时间:2023-12-03 20:22:59 25 4
gpt4 key购买 nike

我们基于 Sitecore 6.6.0 (rev. 120918) 的网站可以在 http 和 https 上运行。我们还有一项安全要求,即无论网站是否通过 http 访问,都使所有 cookie 都通过 SSL 传输。

我们通过使用 web.config 中的 requireSSL 属性实现了这个要求,如下所述:How can I set the Secure flag on an ASP.NET Session Cookie?

通过此更改,我们的公共(public)网站可以正常运行,并且在 Firebug 中进行分析时,我们可以看到所有 cookie 都是“安全的”,即使通过 http 访问该网站也是如此。

但问题是当我尝试通过 http 登录到 sitecore 管理门户时,它会抛出错误 The application is configured to issue secure cookies. These cookies require the browser to issue the request over SSL (https protocol). However, the current request is not over SSL.我可以访问 sitecore 管理门户的唯一方法是通过 https。即使使用 https,它也会带来一些奇怪的问题。使用一段时间后,它说很多管理员用户已登录,我必须踢一些才能进入。我也无法远程访问管理员门户。

为什么公共(public)网站使用 SSL cookie,但 sitecore 管理门户存在 SSL cookie 问题。会不会是和我们网站不兼容的配置?

最佳答案

我认为问题在于您设置了 <httpCookies requireSSL="true" />这会将 cookie 设置为安全,但还必须设置表单例份验证:

<system.web>
<forms requireSSL="true">
/* forms content */
</forms>
</system.web>

因为这会覆盖 cookie 设置。问题是在表单部分设置该设置要求登录发生在 https 而不是 http。在您的公共(public)网站上,如果有登录表单,您只会看到此问题。

要解决此问题,您要么必须为您的创作系统启用 SSL(无论如何都是推荐的),要么忍受不使用安全 cookie。

MSDN: FormsAuthentication.RequireSSL Property

关于asp.net - 带有用于 cookie 的 requireSSL 的 Sitecore,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17065697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com