Some of the questions that folks asked could be answered with some shell
commands.  Here they are wrapped in a Docker container.

docker container run --rm -i ubuntu:22.04 <<'eof'
  apt-get update
  apt-get install -y --no-install-recommends \
    dnsutils whois netbase curl jq

  FQDN=www.appl-ecosys.com
  dig +short ${FQDN} |
    xargs -n 1 whois
  curl -k -s -I -XGET -v https://${FQDN}/ 2>&1 |
    sed -ne '/^\* Server/,/^\*  SSL/p'
  dig +short ${FQDN} |
    xargs -I {} curl -s ipinfo.io/{} <http://ipinfo.io/%7B%7D> |
    jq .
  dig +noall +answer ${FQDN}
eof

Regards,
- Robert



On Sun, Nov 6, 2022 at 4:53 PM Rich Shepard <[email protected]>
wrote:

> On Sun, 6 Nov 2022, Kevin Williams wrote:
>
> > Rich, do you use in managed hosting provider such as Go Daddy or
> Bluehost?
>
> Kevin,
>
> My web site is hosted by nearlyfreespeech.net.
>
> Rich
>

Reply via email to