我在默认的IIS7网站中有一个默认网站和另一个Web应用程序(让我们称之为IIS7)。
我有两个注册域名,比如说www.example.com和www.example.net。
我想配置一些东西,当我打开www.example.com时,我得到默认的网站,当我打开www.example.net时,我得到默认的网站/应用程序2。
www.example.com -> Default Web Site
www.example.net -> Default Web Site/Application2
我怎么能这么做?
我在我的ASP.NET MVC应用程序中使用内存会话,这意味着我只能有一个工作线程,对吗?这是否意味着我的应用程序中有并行处理(考虑并发请求)?我的申请一次只接受一个请求吗?
编辑:根据IIS7网站:
If the application uses in-process session variables,
the application will not function correctly, because the same user requests
are picked up by different worker processes that
do not share th
我有一个特殊的网站,可以使用IIS7 ServerManager创建新网站:
using (ServerManager serverManager = new ServerManager())
{
// create new site logic here
}
这个特殊的网站必须在系统帐户下运行才能管理IIS7。有没有办法创建一个特殊的windows用户,将其设置为站点的应用程序池标识,并赋予该用户仅访问IIS7而不是完全系统访问的特殊权限?
我之所以要这样做,是为了尽可能少地给站点的进程标识权限。
如果问题不够清楚,请让我知道:)