AD Integration enabled on the IIS7 provider. This will allow to store site
content on a remote (highly available) filesystem and enabled the scenario of webfarm with a shared IIS configuration as well. The netbios domain name will need to be set in the configuration of the provider. and off course "Create Active Directory accounts" checked as well
This commit is contained in:
parent
43b73aee66
commit
c1e2aa8477
8 changed files with 159 additions and 37 deletions
|
@ -40,6 +40,8 @@ namespace WebsitePanel.Providers.OS
|
|||
private string fullName;
|
||||
private string description = "WebsitePanel system account";
|
||||
private string password;
|
||||
private string msIIS_FTPDir = "";
|
||||
private string msIIS_FTPRoot = "";
|
||||
private bool passwordCantChange;
|
||||
private bool passwordNeverExpires;
|
||||
private bool accountDisabled;
|
||||
|
@ -98,5 +100,18 @@ namespace WebsitePanel.Providers.OS
|
|||
get { return memberOf; }
|
||||
set { memberOf = value; }
|
||||
}
|
||||
|
||||
public string MsIIS_FTPDir
|
||||
{
|
||||
get { return msIIS_FTPDir; }
|
||||
set { msIIS_FTPDir = value; }
|
||||
}
|
||||
|
||||
public string MsIIS_FTPRoot
|
||||
{
|
||||
get { return msIIS_FTPRoot; }
|
||||
set { msIIS_FTPRoot = value; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue