Sign In
CarlosAg Blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Blog Home
Email Blog Author
Share this
RSS for posts
Atom
RSS for comments
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NET
ARR
ASP.NET
IIS
IIS Manager
IIS News Item
Microsoft.Web.Administration
Personal
SEO
URL Rewrite
WinForms
Archive
Archives
December 2011
(1)
August 2011
(3)
January 2011
(1)
November 2010
(1)
October 2010
(1)
May 2010
(2)
April 2010
(3)
March 2010
(1)
February 2010
(2)
November 2009
(9)
October 2009
(1)
September 2009
(1)
July 2009
(1)
June 2009
(6)
February 2009
(1)
November 2008
(2)
October 2008
(1)
September 2008
(4)
August 2008
(3)
July 2008
(5)
June 2008
(4)
May 2008
(3)
April 2008
(4)
March 2008
(6)
February 2008
(1)
January 2008
(2)
December 2007
(1)
November 2007
(2)
October 2007
(1)
September 2007
(2)
June 2007
(1)
May 2007
(1)
March 2007
(2)
February 2007
(1)
August 2006
(1)
June 2006
(1)
May 2006
(1)
April 2006
(2)
November 2005
(1)
September 2005
(1)
August 2005
(1)
July 2005
(1)
The new Configuration System in IIS 7
MSDN Blogs
>
CarlosAg Blog
>
The new Configuration System in IIS 7
The new Configuration System in IIS 7
CarlosAg
25 Apr 2006 4:48 PM
Comments
19
Today I was planning on talking about the configuration classes that I purposedly skipped in my last post, but I realized it would be better to explain a little bit more about the new configuration system used in IIS 7.
First of all, many of you (as me) will be extremely happy to know that the old "monolithic-centralized-admin only" metabase is dead, we have got rid of it for a much better configuration store. Now, before you feel panic, let me assure you that we haven’t just killed it and forget about the thousands of lines of scripts or custom tools built using the old metabase API’s (such as ABO), for that we have created something we called ABOMapper which will allow all of those applications to keep running transparently, since it will auto-magically translate the old calls to the metabase to actually modify the new configuration system.
So what is this new configuration system? Well for those of you who have been working with ASP.NET for the past years, you will feel right at home and happy to know that we are moving to used the exact same concept as ASP.NET does
.config
files.
ApplicationHost.config
At the root level we have a file called ApplicationHost.config that lives in the same directory of IIS (typically <windows>\System32\InetSrv\ directory). This is the main configuration file for IIS, this is where we store things like the list of sites, applications, virtual directories, general settings, logging, caching, etc.
This file has two main groups of settings:
system.applicationHost: Contains all the settings for the activation service, basically things like the list of application pools, the logging settings, the listeners and the sites. These settings are centralized and can only be defined within applicationHost.config.
system.webServer: Contains all the settings for the Web server, such as the list of modules and isapi filters, asp, cgi and others. These settings can be set in applicationHost.config as well as any web.config (provided the Override Mode settings are set to allow)
Administration.config
This is also a file located in the IIS directory where we store delegation settings for the UI, including the list of modules (think of it as a UI Add-in) available, and other things like administrators.
Web.config
Finally the same old web.config from asp.net has gotten smarter and now you will be able to include server settings along with your asp.net settings.
Why is this important?
Well, as I said at the beginning the old metabase could only be accessed by administrators, so in order for someone to change a settings as simple as the default document for a specific application (say you want to change it to be index.aspx), you would need to be an administrator or call the administrator to do the changes.
With this new distributed configuration system I can now safely modify the web.config within my application and have it my own way without disturbing anyone else. Furthermore, since it lives in my own web.config along with the content of my application I can safely XCopy the whole application and now even the web server settings are ready. No longer the case of going to InetMgr and start setting everything manually or creating a bunch of scripts to do that.
So how does this actually looks like:
In applicationHost.config my Sites section looks as follows:
<
sites
>
<
site
name
="Default Web Site"
id
="1">
<
application
path
="/"
applicationPool
="DefaultAppPool">
<
virtualDirectory
path
="/"
physicalPath
="c:\inetpub\wwwroot"
/>
</
application
>
<
bindings
>
<
binding
protocol
="HTTP"
bindingInformation
="*:80:"
/>
</
bindings
>
</
site
>
</
sites
>
This basically defines a site that has a root application with a virtual directory that points to \inetpub\wwwroot. This site is listening on any IP address on port 80.
Say I wanted to add a new application and make it listen also in port 8080.
<
sites
>
<
site
name
="Default Web Site"
id
="1">
<
application
path
="/"
applicationPool
="DefaultAppPool">
<
virtualDirectory
path
="/"
physicalPath
="c:\inetpub\wwwroot"
/>
</
application
>
<
application
path
="/MyApp"
applicationPool
="DefaultAppPool">
<
virtualDirectory
path
="/"
physicalPath
="d:\MyApp"
/>
</
application
>
<
bindings
>
<
binding
protocol
="HTTP"
bindingInformation
="*:80:"
/>
<
binding
protocol
="HTTP"
bindingInformation
="*:8080:"
/>
</
bindings
>
</
site
>
</
sites
>
Just by adding the previous markup, I can now browse to http://localhost:8080/MyApp
IIS Settings in web.config
More interesting I can now add a file called web.config to c:\MyApp\web.config, and set the content to be:
<
configuration
>
<
system.webServer
>
<
defaultDocument
>
<
files
>
<
clear
/>
<
add
value
="Index.aspx"
/>
</
files
>
</
defaultDocument
>
</
system.webServer
>
</
configuration
>
And with this change, my application now will respond using index.aspx whenever /MyApp is requested.
You can extrapolate from this that all the IIS settings for your application including authentication, authorization, asp and cgi settings, the list of modules, custom errors, etc can be configured within your web.config and never have to request changes to administrators again.
Of course this brings the question, isn’t this insecure? The answer is no, by default all the IIS sections (except DefaultDocuments) is locked at the applicationHost.config, meaning no one can change them within their web.config unless explicitly changed by the administrator. The cool thing is that the administrator can change it and customize it per application allowing certain apps to change settings while preventing others from doing it. All this can be done through plain config using Notepad or using the
very cool NEW InetMgr
(which I will blog about it later)
Finally, the following image shows the hierarchy of config files for each url.
Now that I have shown a high level overview of how configuration works in IIS 7, I will finally blog about the API to actually change this settings programmatically using Managed code and Microsoft.Web.Administration.dll
19 Comments
IIS
,
.NET
Blog - Comment List MSDN TechNet
Comments
Loading...
Leave a Comment
Name
Comment
Please add 8 and 8 and type the answer here:
Post