Created
March 8, 2020 17:56
-
-
Save mikepfeiffer/c1d9256435a27793e3652957ff3f7267 to your computer and use it in GitHub Desktop.
Simple DSC Configuration for IIS Web Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Configuration IIS | |
{ | |
# This will generate three .mof files; web1.mof, web2.mof, web3.mof | |
Node ('web1', 'web2', 'web3') | |
{ | |
#ensure IIS is installed | |
WindowsFeature IIS | |
{ | |
Name = 'web-server' | |
Ensure = 'Present' | |
} | |
#ensure the default document is configured for web app | |
File default | |
{ | |
DestinationPath = 'c:\inetpub\wwwroot\default.htm' | |
Contents = 'Hello World' | |
DependsOn = '[WindowsFeature]IIS' | |
Ensure = 'Present' | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment