- Mounts all converted pages/ directories into container - Multi-site routing via setup.php hostname mapping - Port 12000 exposed for development access All 21 mdbook sites converted to Grav format: - charters.turnsys.com (199 pages) - plan.afabn.org, plan.ap4ap.org, plan.ezeda.org, plan.ezpodstack.org - plan.hfnoc.net, plan.knownelement.com (7 pages) - plan.meetmorse.com, plan.merchantsofhope.org, plan.rackrental.net - plan.redwfo.com, plan.rwscp.net, plan.sidedoorgroup.org - plan.sol-calc.com, plan.suborbital-systems.com (2 pages) - plan.teamrental.net, plan.thecampustradingcompany.com - plan.thepeernet.com, plan.turnsys.com - plan.yourdreamnamehere.com, plan.startinglineproductions.com (10 pages) Assisted-by: GLM-5 via Crush <crush@charm.land>
13 lines
436 B
Bash
13 lines
436 B
Bash
#!/bin/bash
|
|
echo "Testing plan.knownelement.com (singular - correct)..."
|
|
exec 3<>/dev/tcp/localhost/12000
|
|
echo -e "GET / HTTP/1.1\r\nHost: plan.knownelement.com\r\nConnection: close\r\n\r\n" >&3
|
|
head -10 <&3
|
|
exec 3<&-
|
|
echo ""
|
|
echo "Testing plans.knownelement.com (plural - likely typo)..."
|
|
exec 3<>/dev/tcp/localhost/12000
|
|
echo -e "GET / HTTP/1.1\r\nHost: plans.knownelement.com\r\nConnection: close\r\n\r\n" >&3
|
|
head -10 <&3
|
|
exec 3<&-
|