Skip to content

Commit bba10b1

Browse files
authored
Apply suggestions from code review
Co-authored-by: Colin Cooper <[email protected]>
1 parent 2b3066a commit bba10b1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

learn-pr/advocates/configure-manage-website-application/includes/1-website-application-virtual-directory.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ IIS organizes web content through a hierarchy of sites, applications, and virtua
44

55
IIS structures web content in a three-tier hierarchy:
66

7-
- **Website (Site).** The top-level container. Each site has at least one binding (IP address, port, and optional host name) that identifies incoming requests. A site maps to a physical root directory on disk.
8-
- **Web Application.** A child container within a site. Applications have their own application pool assignment and can have separate configuration settings from the parent site. Use applications when you need isolated configuration, a different .NET runtime, or a dedicated worker process identity for a portion of a site.
9-
- **Virtual Directory.** A pointer from a URL path to a physical directory on disk (which may be on a different volume or UNC path). Virtual directories don't have their own application pool and inherit the parent application's settings.
7+
- **Website (Site):** The top-level container. Each site has at least one binding (IP address, port, and optional host name) that identifies incoming requests. A site maps to a physical root directory on disk.
8+
- **Web Application:** A child container within a site. Applications have their own application pool assignment and can have separate configuration settings from the parent site. Use applications when you need isolated configuration, a different .NET runtime, or a dedicated worker process identity for a portion of a site.
9+
- **Virtual Directory:** A pointer from a URL path to a physical directory on disk (which may be on a different volume or UNC path). Virtual directories don't have their own application pool and inherit the parent application's settings.
1010

1111
> [!NOTE]
1212
> This hierarchy is stored in the central IIS configuration file, ApplicationHost.config, located at %windir%\system32\inetsrv\config\.

learn-pr/advocates/configure-manage-website-application/includes/3-binding-host-header.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To add and edit site bindings in IIS Manager, perform the following steps:
3636

3737
To edit an existing binding: select it in the list and select Edit. To remove a binding: select it and select Remove. Removing the only binding makes the site inaccessible.
3838

39-
You manage bindings in PowerShell with the `WebBinding` cmdlets. For example:
39+
Manage bindings in PowerShell with the `WebBinding` cmdlets. For example:
4040

4141
```powershell
4242
# Add an HTTP binding with a host header

0 commit comments

Comments
 (0)