如何创建和管理多租户 ASP MVC 应用程序

发布于 2024-08-27 15:09:28 字数 267 浏览 9 评论 0原文

我想创建一个使用主机名来确定客户的多租户应用程序。

例如:

CustomerOne.myapp.com AnotherCo.myapp.com AndOneMore.myapp.com ...

我可以毫无问题地完成数据库和安全方面的工作,我还可以从 URL 获取主机名,但我正在努力找出如何创建允许新客户在线注册的基本管道,提供他们的公司名称,并为应用程序创建新的 URL,以便立即使用。

有人可以帮忙吗?

谢谢,

罗布。

I want to create a multi-tenant application that uses the hostname to determine the customer.

For example:

CustomerOne.myapp.com
AnotherCo.myapp.com
AndOneMore.myapp.com
...

I can do the database and security side with no problems, I can also get the hostname from the URL, but what I am struggling to find out is how to create the basic plumbing that would allow a new customer to sign up online, provide their company name, and for the application to create the new URL, ready to be used straight away.

Can anyone help?

Thanks,

Rob.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只有影子陪我不离不弃 2024-09-03 15:09:28

我无法准确回答这个问题,但我可以稍微分解一下。

要设置新的通用子域something.myapp.com,您需要执行两件事:

1) 通过您的ISP 以编程方式添加一些新的DNS 条目,以便something.myapp.com 指向您的Web 服务器。

2) 以编程方式在 IIS 中设置本地绑定,以便将 Something.myapp.com 定向到正确的网站/虚拟目录/应用程序

有一些关于以编程方式设置 IIS 绑定的讨论 此处,它也链接到此论坛帖子 此处,其中提到appcmd.exe 可用于在运行时设置 IIS 配置。

希望这能为您指明正确的方向......

I can't answer this exactly, but I can break it down a little bit.

To set up a new generic subdomain something.myapp.com you'll need to do two things:

1) Programmatically add some new DNS entries via your ISP so that something.myapp.com points to your web server.

2) Programmatically set the local bindings in IIS so that something.myapp.com gets directed to the right website/virtual directory/application

There is some discussion of setting IIS binding programmatically here, which also links through to this forum post here, which mentions that appcmd.exe can be used to set IIS config at run time.

Hope this points you in the right direction ...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文