Files
learning/winserver/010-iis.md
2025-10-18 21:59:22 +02:00

32 lines
1.4 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Internet Information Services (IIS)
`Internet Information Services` (`IIS`) è un server web sviluppato per la piattaforma Microsoft .NET e operante sui sistemi operativi Windows. È progettato per ospitare applicazioni web sviluppate con ASP.NET e siti web statici. Inoltre, può funzionare come server FTP.
Tra le opzioni di autenticazione integrate, si possono trovare `Basic Authentication`, `ASP.NET Authentication` e `Windows Authentication`. Quest'ultima è particolarmente vantaggiosa in un ambiente Active Directory, in quanto consente agli utenti di autenticarsi automaticamente nelle applicazioni web utilizzando il proprio account di dominio.
## Installazione del ruolo Web Server (IIS)
Per installare IIS, è necessario aggiungere il ruolo `Web Server (IIS)` tramite `Server Manager`.
![iis-role](asset/img/iis-role.png)
Durante la procedura, è possibile selezionare ruoli aggiuntivi per IIS, tra cui:
- WebDAV Publishing
- Dynamic Content Compression
- Basic Authentication (plain text)
- Windows Authentication
- FTP Server
![additional-features](asset/img/additional-features.png)
## Gestione del server
Lo strumento di gestione `IIS Manager` è accessibile da `Control Panel > Windows Tools`.
![iis-manager](asset/img/iis-manager.png)
Il sito web predefinito sarà raggiungibile allindirizzo `http://localhost`.
![iis-website](asset/img/iis-website.png)