指向同一 Web 应用程序的 IIS 子域设置
我们有一个 Web 应用程序,必须作为独立子域部署到 URL http://clientName.webapp.com。每个客户都可以选择一个站点名称,但网络应用程序都是相同的。我们目前在 iis7 上运行 .NET 2.0,迁移到 3.5,并且通过在共享服务器上完成的 inproc 会话管理来实现服务器负载平衡。还要求这是一个实时设置,客户端可以在其中注册并开始使用网络应用程序。还要求特定的客户端站点具有独立的 SSL 加密。
所以问题是,我应该使用 url write 来完成这个任务吗?如果是这样,我如何独立设置 SSL 加密?或者我应该创建一个指向同一个应用程序的新网站?如果是这样,我该如何编写脚本才能自动创建它。
感谢您的帮助!
We have a web application which must be deployed as independent subdomains to the url http://clientName.webapp.com. Each client can choose a site name, but the web application are all the same. We are currently running .NET 2.0 moving to 3.5 on iis7, and servers are load balenced with inproc session management done on a shared server. It is also required that this is a real-time seteup where clients sign up and can start using the webapp. It is also required that particular client sites have SSL encryption independently.
So question is, should I use url write to accomplish this? If so, how do I setup SSL encryptions independently? Or should I create a new website pointing to the same app? if so, how do I script this so it is created automatically.
thanks for all the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有了这个,我将做出几个假设:
a)所有子域都指向文件系统上的相同代码(相同的文档根)
b)所有站点将在同一个 webapp.com 域下运行(即 app1.webapp .com、app2.webapp.com 等)
这是完成您想要做的事情的一种可能的方法。
这实际上与 WordPress 多站点的工作原理类似。
With this I will make a couple of assumptions:
a) All sub-domains are pointing to the same code on the file system (same document root)
b) All sites will be running under the same webapp.com domain (i.e. app1.webapp.com, app2.webapp.com, etc.)
Here is one possible way to accomplish what you are trying to do.
This is actually a similar idea to how WordPress Multi-site works.