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
#!/usr/bin/env bash | |
# HTTP web service implemented in socat + bash | |
# Usage: socat -T 1 -d -d tcp-l:8080,reuseaddr,fork,crlf exec:./http_server.sh | |
# Purpose: Provide an HTTP server that displays the current server date, | |
# to validate the artifact structure and play with it. | |
# Note: socat crlf option is translating all our \n to \r\n on output. | |
http_version="1.0" | |
declare -a _http_responses=( |