mirror of
https://github.com/jmcorgan/fips.git
synced 2026-07-22 07:48:26 +00:00
Fix gateway test HTTP server port mismatch
The entrypoint HTTP server was binding port 80 but gateway-test.sh curls port 8000. Maint already had 8000; the wrong port was introduced during a merge to master.
This commit is contained in:
@@ -24,7 +24,7 @@ start_dnsmasq() {
|
||||
start_services() {
|
||||
/usr/sbin/sshd
|
||||
iperf3 -s -D
|
||||
python3 -m http.server 80 -d /root -b :: &>/dev/null &
|
||||
python3 -m http.server 8000 -d /root -b :: &>/dev/null &
|
||||
}
|
||||
|
||||
# ── Chaos: TCP ECN + ethernet wait ──────────────────────────────────────
|
||||
|
||||
Reference in New Issue
Block a user