Skip to content

Instantly share code, notes, and snippets.

@mikepfeiffer
Created March 8, 2020 17:56
Show Gist options
  • Save mikepfeiffer/c1d9256435a27793e3652957ff3f7267 to your computer and use it in GitHub Desktop.
Save mikepfeiffer/c1d9256435a27793e3652957ff3f7267 to your computer and use it in GitHub Desktop.
Simple DSC Configuration for IIS Web Server
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