Session-gated MinIO save sync with AppImage GUI, CLI edit/session flow, and Gitea release helper. Co-authored-by: Cursor <[email protected]>
27 lines
799 B
Bash
Executable File
27 lines
799 B
Bash
Executable File
#!/bin/sh
|
|
# Run this FROM YOUR PC (not inside the NAS container) while debugging Console login.
|
|
# Usage: ./check-console.sh 192.168.1.5
|
|
|
|
HOST="${1:-192.168.1.5}"
|
|
|
|
echo "==> API health http://${HOST}:9000/minio/health/live"
|
|
if curl -fsS --connect-timeout 3 "http://${HOST}:9000/minio/health/live"; then
|
|
echo
|
|
echo "OK — port 9000 reachable"
|
|
else
|
|
echo
|
|
echo "FAIL — browser Console cannot log in if API :9000 is blocked (Synology Firewall / port publish)"
|
|
fi
|
|
|
|
echo
|
|
echo "==> Console http://${HOST}:9001/"
|
|
if curl -fsS -o /dev/null --connect-timeout 3 "http://${HOST}:9001/"; then
|
|
echo "OK — port 9001 reachable"
|
|
else
|
|
echo "FAIL — cannot load WebUI"
|
|
fi
|
|
|
|
echo
|
|
echo "Open EXACTLY: http://${HOST}:9001"
|
|
echo "Login as MINIO_ROOT_USER from .env (e.g. jorg) — not app access key."
|