You are on page 1of 3

Create a Web Site (IIS 7)

Page 1 of 3

2010 Microsoft Corporation. All rights reserved.

Create a Web Site (IIS 7)


Applies To: Windows 7, Windows Server 2008, Windows Server 2008 R2, Windows Vista When you want to publish content for access over the Internet or an intranet connection, you can add a Web site to your Web server to hold the content. During IIS 7 installation, a default Web site configuration is created in the \Inetpub\Wwwroot directory on your Web server. You can either use this default directory to publish your Web content, or create a directory at a file system location of your choice. When you add a Web site in IIS 7, a site entry is created in the ApplicationHost.config file. The entry specifies the network binding for the site, maps the site to a location in the file system, and optionally specifies user credentials for content access.

Prerequisites

For information about the levels at which you can perform this procedure, and the modules, handlers, and permissions that are required to perform this procedure, see Sites Feature Requirements (IIS 7) [ http://technet.microsoft.com/en-us/library/cc754865(WS.10).aspx ] . Exceptions to feature requirements None

To add a Web site

You can perform this procedure by using the user interface (UI), by running Appcmd.exe commands in a command-line window, by editing configuration files directly, or by writing WMI scripts. User Interface To use the UI 1. Open IIS Manager. For information about opening IIS Manager, see Open IIS Manager (IIS 7) [ http://technet.microsoft.com/en-us/library/cc770472(WS.10).aspx ] . For information about navigating to locations in the UI, see Navigation in IIS Manager (IIS 7) [ http://technet.microsoft.com/en-us/library/cc732920(WS.10).aspx ] . In the Connections pane, right-click the Sites node in the tree, and then click Add Web Site. In the Add Web Site dialog box, type a friendly name for your Web site in the Web site name box. Click Select if you want to select a different application pool than the one listed in the Application Pool box. In the Select Application Pool dialog box, select an application pool from the Application Pool list and then click OK. In the Physical path box, type the physical path of the Web site's folder, or click the browse button (...) to navigate the file system to find the folder. If the physical path that you entered in step 5 is to a remote share, click Connect as to specify credentials that have permission to access the path. If you do not use specific credentials, select the Application user (pass-thru authentication) option in the Connect As dialog box. Select the protocol for the Web site from the Type list. The default value in the IP address box is All Unassigned. If you must specify a static IP address for the Web site, type the IP address in the IP address box. Type a port number in the Port text box. Optionally, type a host header name for the Web site in the Host Header box.

2. 3. 4.

5.

6.

7. 8.

9. 10.

http://technet.microsoft.com/en-us/library/cc772350(WS.10,printer).aspx

09/09/2010

Create a Web Site (IIS 7)

Page 2 of 3

11.

If you do not have to make any changes to the site, and you want the Web site to be immediately available, select the Start Web site immediately check box. Click OK.

12.

Command Line To add a site, use the following syntax: appcmd add site /name: string /id: uint /physicalPath: string /bindings: string The variable name string is the name, and the variable id uint is the unsigned integer that you want to assign to the site. The variables name string and id uint are the only variables that are required when you add a site in Appcmd.exe.
Note

When you add a site without specifying the values for the bindings and physicalPath attributes, the site will not be able to start.

The variable physicalPath string is the path of the site content in the file system. The variable bindings string contains information that is used to access the site, and it should be in the form of protocol/IP_address:port:host_header. For example, a Web site binding is the combination of protocol, IP address, port, and host header. A binding of http/*:85: enables a Web site to listen for HTTP requests on port 85 for all IP addresses and domain names (also known as host headers or host names). On the other hand, a binding of http/*:85:marketing.contoso.com enables a Web site to listen for HTTP requests on port 85 for all IP addresses and the domain name marketing.contoso.com. To add a Web site named contoso with an ID of 2 that has content in c:\contoso, and that listens for HTTP requests on port 85 for all IP addresses and a domain name of marketing.contoso.com, type the following at the command prompt, and then press ENTER: appcmd add site /name: contoso /id:2 /physicalPath: c:\contoso /bindings:http/*:85: marketing.contoso.com For more information about Appcmd.exe, see Appcmd.exe (IIS 7) [ http://technet.microsoft.com/enus/library/cc772200(WS.10).aspx ] . Configuration The procedure in this topic affects the following configuration elements: <site> <application> <virtualDirectory> <bindings> For more information about IIS 7 configuration, see IIS 7.0: IIS Settings Schema [ http://go.microsoft.com/fwlink/?LinkId=88551 ] on MSDN. WMI Use the following WMI classes, methods, or properties to perform this procedure: Site.Create method For more information about WMI and IIS, see Windows Management Instrumentation (WMI) in IIS 7 [ http://technet.microsoft.com/en-us/library/cc771707(WS.10).aspx ] . For more information about the classes, methods, or properties associated with this procedure, see the IIS WMI Provider Reference [ http://go.microsoft.com/fwlink/?LinkId=79310 ] on the MSDN site.

See Also
Concepts Managing Sites in IIS 7 [ http://technet.microsoft.com/en-us/library/cc771341(WS.10).aspx ]

http://technet.microsoft.com/en-us/library/cc772350(WS.10,printer).aspx

09/09/2010

Create a Web Site (IIS 7)

Page 3 of 3

Tags:

Community Content
Some explanations
Last Edit 7:34 PM by LukePuplett

<strong>Selecting a protocol (HTTP/HTTPS)<br /><br /></strong>Looks like you can only choose one and that's almost always going to be HTTP. You can add others later. The others are mostly for nonvisual websites; web services and the like.<br /><br /><strong>Pass-thru Authentication<br /><br /></strong>Also known as delegation is the process of using the authenticated user account provided by the web client to IIS to gain access to resources secured with ACLs and SIDs.<br /><br /><strong>Host Header Names<br /></strong><br />Microsoft Internet Information Services (IIS) allows you to map multiple Web sites with the same port number to a single IP address by using a feature called Host Header Names. By assigning a unique host header name to each Web site, this feature allows you to map more than one Web site to an IP address.<br />

Tags:

http://technet.microsoft.com/en-us/library/cc772350(WS.10,printer).aspx

09/09/2010

You might also like