Home  >  Article  >  Topics  >  Detailed explanation of IIS environment

Detailed explanation of IIS environment

coldplay.xixi
coldplay.xixiforward
2021-04-14 17:24:543619browse

Detailed explanation of IIS environment

IIS (Internet Information Services)

IIS is Internet information services The abbreviation of Internet Information Services, which is a basic Internet service based on Microsoft Windows provided by Microsoft Corporation. IIS is a web (web page) service component, which includes web server, FTP server, NNTP server and SMTP server, which are used for web browsing, file transfer, news service and email sending respectively. It makes the network (including the Internet) personal It has become very easy to publish information on the local area network).

## Recommended (free): iis

Installation and configuration of IIS: Just refer to the following website.

##Windows8 installation IIS and adding website

After the IIS environment is set up, the IIS windows interface will come into view:


##After you add the website, the website homepage will be displayed in the IIS manager:


##This release website mainly uses nouns such as default documents, program pools, etc. These are the first times we have come into contact with them. Now let us get to know them.

Default document:

Usually after we publish a website in IIS, You need to manually set the startup page of the website. Generally, we will specify a page. Of course, if the project you publish contains index.html or other files that already exist in IIS, then there is no need to manually specify the page.


#Here I manually specified the login interface as The startup page of the website. The first thing you enter after starting the website is the Login.aspx interface.

Application pool:

Application pool is one or more applications A program is linked to a configuration of one or more collections of worker processes. Because applications in an application pool are separated from other applications by worker process boundaries, applications in one application pool are not affected by problems caused by applications in other application pools.

I will explain my publishing process and the problems I encountered in detail in the next article.

The above is the detailed content of Detailed explanation of IIS environment. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete