Added test script to show the server header

This commit is contained in:
Phillip Tarrant
2025-12-26 08:00:16 -06:00
parent 16aca9bba6
commit d0101b34fa

3
tests/check_header.sh Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/env bash
# -s is for silent (no progress bar) | -I is to get the headers | grep is to find only the Server line
curl -s -I http://localhost:5000 | grep "Server:"