IIS7. Enable/Disable Compression
This commit is contained in:
parent
c205e3d6e4
commit
181998b145
8 changed files with 144 additions and 10 deletions
|
@ -56,6 +56,8 @@ namespace WebsitePanel.Providers.Web
|
|||
private bool enableAnonymousAccess;
|
||||
private bool enableWindowsAuthentication;
|
||||
private bool enableBasicAuthentication;
|
||||
private bool enableDynamicCompression;
|
||||
private bool enableStaticCompression;
|
||||
private string defaultDocs;
|
||||
private string httpRedirect;
|
||||
private HttpError[] httpErrors;
|
||||
|
@ -167,6 +169,17 @@ namespace WebsitePanel.Providers.Web
|
|||
set { this.enableBasicAuthentication = value; }
|
||||
}
|
||||
|
||||
public bool EnableDynamicCompression
|
||||
{
|
||||
get { return this.enableDynamicCompression; }
|
||||
set { this.enableDynamicCompression = value; }
|
||||
}
|
||||
public bool EnableStaticCompression
|
||||
{
|
||||
get { return this.enableStaticCompression; }
|
||||
set { this.enableStaticCompression = value; }
|
||||
}
|
||||
|
||||
public bool AspInstalled
|
||||
{
|
||||
get { return this.aspInstalled; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue