Book Image

Microsoft IIS 10.0 Cookbook

By : Ashraf Khan
5 (1)
Book Image

Microsoft IIS 10.0 Cookbook

5 (1)
By: Ashraf Khan

Overview of this book

This book will start with customizing your IIS 10 to various platforms/OS and tune it according to your business requirements. Moving on, we will focus on the functionalities of core fundamentals and perform practical scenarios in order to maximize the use of a reliable web server. Going further we will be covering topics like IIS 10 architecture, IIS modules,hosting web server platforms, virtual directories along with web site deployment, ports, enhanced security. We will also cover new features of IIS 10 like integration with Windows Server 2016 and Nano Server, HTTP/2, PowerShell 5 cmdlets etc . Towards the end, we will cover troubleshooting & diagnostic techniques of IIS 10. By the end of this book you will be well versed with maximizing the reliability of your webserver and will have immense knowledge in using IIS 10 effectively
Table of Contents (14 chapters)

Understanding application pools in IIS 10.0

In this recipe, we will understand application pools. We can simply say that the application pool is the heart of IIS 10.0. Application pools are logical groupings of web applications that will execute in a common process, thereby allowing greater granularity over which programs are clustered together in a single process. For example, if you require every web application to execute in a separate process, you simply go and create an application pool for each application of different framework versions.

Let's say that we have more than one version of a website, one that supports framework 2.0 and another one supporting framework 4.0 or some different application such as PHP or WordPress. All these website process are managed through application pools.

...