Files

22 lines
644 B
PowerShell
Raw Permalink Normal View History

2021-02-01 06:03:49 -08:00
################################################################################
## File: Install-Nginx.ps1
## Desc: Install Nginx
################################################################################
# Stop w3svc service
2023-11-23 18:08:20 +01:00
Stop-Service -Name w3svc
2021-02-01 06:03:49 -08:00
# Install latest nginx in chocolatey
$installDir = "C:\tools"
Install-ChocoPackage nginx -ArgumentList "--force", "--params", "/installLocation:$installDir /port:80"
2021-02-01 06:03:49 -08:00
# Stop and disable Nginx service
Stop-Service -Name nginx
2023-11-23 18:08:20 +01:00
Set-Service -Name nginx -StartupType Disabled
2021-02-01 06:03:49 -08:00
# Start w3svc service
2023-11-23 18:08:20 +01:00
Start-Service -Name w3svc
2021-02-01 06:03:49 -08:00
# Invoke Pester Tests
Invoke-PesterTests -TestFile "Nginx"