PowerShell/demos/Apache
bergmeister ffd39b2853 PSScriptAnalyzer fixes by category (#4261)
- Fix PSScriptAnalyzer warnings of type PSAvoidUsingCmdletAliases for 'ForEach-Object' (alias is '%' or 'foreach')
- Fix PSScriptAnalyzer warnings of type PSAvoidUsingCmdletAliases for 'Where-Object' (alias is '?' or 'where')
- Fix PSScriptAnalyzer warnings of type PSAvoidUsingCmdletAliases for 'Select-Object' (alias is 'select')
- Fix PSScriptAnalyzer warnings of type PSPossibleIncorrectComparisonWithNull. Essentially, $null has to be on the left-hand side when using it for comparison.
- A Test in ParameterBinding.Tests.ps1 needed adapting as this test used to rely on the wrong null comparison
- Replace a subset of tests of kind '($object -eq $null) | Should Be $true' with '$object | Should Be $null'
2017-07-21 21:03:49 -07:00
..
Apache PSScriptAnalyzer fixes by category (#4261) 2017-07-21 21:03:49 -07:00
apache-demo.ps1 PSScriptAnalyzer fixes by category (#4261) 2017-07-21 21:03:49 -07:00
readme.md Add DSC demo. Bugfix Apache and SystemD demo. (#1814) 2016-08-17 12:07:12 -07:00

Apache Management Demo

This demo shows management of Apache HTTP Server with PowerShell cmdlets implemented in a script module.

  • Get-ApacheVHost: Enumerate configured Apache Virtual Host (website) instances as objects.
  • Get-ApacheModule: Enumerate loaded Apache modules
  • Restart-ApacheHTTPserver: Restart the Apache web server
  • New-ApacheVHost: Create a new Apache Virtual Host (website) based on supplied parameters

Prerequisites

  • Install PowerShell
  • Install Apache packages
    • sudo apt-get install apache2
    • sudo yum install httpd

Note: Management of Apache requires privileges. The user must have authorization to elevate with sudo. You will be prompted for a sudo password when running the demo.