使用 Extranet 扩展 ssl 共享点站点
所以我有这个项目是我从另一个人那里接手的——不幸的是我无法咨询他。而且我没有 SSL 方面的经验。
基本上,这个共享点网络应用程序已设置为使用 SSL - 并且一切都运行良好。我在中央管理页面中看到,网络应用程序有两个区域(标准区域和互联网区域)。在 IIS 中,有 2 个网站包含此共享点站点。
一个具有端口值 TCP 0 和 SSL 端口 443,另一个具有 TCP 80 并重定向到 SSL 网站。到目前为止,一切都很好。
现在我需要使用经过表单验证的外联网来扩展该网站。我该怎么办?
我做了,我会做一个普通的共享点网站,并首先从中央管理扩展网络应用程序,记得将区域设置为外联网,并选中“使用 SSL”。 (端口 1580)
我进入虚拟目录中的 web-config 文件,并设置表单内容(连接字符串、提供程序等)。
但后来我对如何真正访问这个外联网感到困惑。我无法通过以下方式访问它:
http://site.com:1580
or
https://site.com:1580
我尝试将现有的重定向更改为外联网的虚拟目录 - 没有骰子。我知道这很简单,所以一定有人可以向我解释它,就像我是个孩子一样:D
So I have this project I took over from another guy - whom I can't consult with unfortunately. And I have no experience in SSL.
Basically there's this sharepoint web-app which has been setup to use SSL - and everything's working great. I see in the central admin page, that there are two zones to the web-app (standard and internet). In IIS there are 2 web sites containing to this sharepoint site.
One has the port value TCP 0 and SSL port 443, the other a TCP 80 with a redirect to the SSL website. So far so good.
Now I need to extend this website with a forms-authenticated extranet. How do I go about this?
I did, what I would do with a normal sharepoint website, and first extended the web-app from central admin, remembered to set the zone to extranet, and checked "use SSL". (port 1580)
I went into the web-config file in the virtual directory, and set up the forms-stuff (connection string, providers, etc.).
But then I was stumped as to how to actually access this extranet. I couldn't access it by doing:
http://site.com:1580
or
https://site.com:1580
And I tried just changing the existing redirect to the virtual directory of the extranet - no dice. I know this is simple, so there must be someone who can explain it to me, as if I was a child :D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的猜测是 IIS 不知道您的 1580 端口。
进入IIS管理器,进入新的扩展网站,检查1580端口是否已映射到它。检查 SSL 端口是否也已映射。并且不要忘记添加证书。
My guess is that IIS does not know about your 1580 port.
Go into IIS manager, into the new extended web site, and check that the 1580 port has been mapped to it. Check that the SSL port has been mapped too. And don't forget to add the certificate.