Created
November 6, 2017 03:33
-
-
Save zhilich/b8480f1d22f9b15d4fdde07ddc6fa4ed to your computer and use it in GitHub Desktop.
Simple Http Server in PowerShell
This file contains hidden or 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
function Load-Packages | |
{ | |
param ([string] $directory = 'Packages') | |
$assemblies = Get-ChildItem $directory -Recurse -Filter '*.dll' | Select -Expand FullName | |
foreach ($assembly in $assemblies) { [System.Reflection.Assembly]::LoadFrom($assembly) } | |
} | |
Load-Packages | |
$url = 'http://*:443/' | |
$listener = New-Object System.Net.HttpListener | |
$listener.Prefixes.Add($url) | |
$listener.Start() | |
Write-Host "Listening at $url..." | |
while ($listener.IsListening) | |
{ | |
$context = $listener.GetContext() | |
$requestUrl = $context.Request.Url | |
$response = $context.Response | |
Write-Host '' | |
Write-Host "> $requestUrl" | |
$localPath = $requestUrl.LocalPath | |
$buffer = [System.Text.Encoding]::UTF8.GetBytes('<html><body>Hello world!</body></html>') | |
$response.ContentLength64 = $buffer.Length | |
$response.OutputStream.Write($buffer, 0, $buffer.Length) | |
$response.Close() | |
$responseStatus = $response.StatusCode | |
Write-Host "< $responseStatus" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment