Tls: no cipher suite supported by both client and server

I get a TLS error when attempting to set Let's Encrypt per website instructions.
How do I fix this problem?

Share your Traefik static and dynamic config, and docker-compose.yml when used.

Thanks for the reply.
I just followed the doc example. My docker-compose.yaml is shown below.
Do I need additional files and what would they look like?

After further error review...

TLS handshake error from 95.216.188.234:49998: tls: client requested unsupported application protocols ([hq h2c spdy/3 spdy/2 spdy/1 http/1.0 http/0.9])

version: "3.3"

services:

  traefik:
    image: "traefik:v2.10"
    container_name: "traefik"
    command:
      - "--log.level=DEBUG"
      - "--api.insecure=true"
      - "--providers.docker=true"
      - "--providers.docker.exposedbydefault=false"
      - "--entrypoints.web.address=:80"
      - "--entrypoints.websecure.address=:443"
      - "--certificatesresolvers.myresolver.acme.httpchallenge=true"
      - "--certificatesresolvers.myresolver.acme.httpchallenge.entrypoint=web"
      #- "--certificatesresolvers.myresolver.acme.caserver=https://acme-staging-v02.api.letsencrypt.org/directory"
      - "--certificatesresolvers.myresolver.acme.email=davidh@MyDomain.com"
      - "--certificatesresolvers.myresolver.acme.storage=/letsencrypt/acme.json"
    ports:
      - "80:80"
      - "443:443"
      - "8080:8080"
    volumes:
      - "./letsencrypt:/letsencrypt"
      - "/var/run/docker.sock:/var/run/docker.sock:ro"

  whoami:
    image: "traefik/whoami"
    container_name: "simple-service"
    labels:
      - "traefik.enable=true"
      - "traefik.http.routers.whoami.rule=Host(`whoami.MyDomain.com`)"
      - "traefik.http.routers.whoami.entrypoints=websecure"
      - "traefik.http.routers.whoami.tls.certresolver=myresolver"

Config looks ok to me. Maybe enable and check Traefik dashboard.

What kind of client is trying to access the website?

Maybe compare your config to a simple Traefik example.

It is the Traefik example

Maybe try tlsChallenge?

The DNS challenge will do a wild card so that is the best. I am generating the acme.json file,
does anybody what to put in the DNS txt record?

DnsChallenge is more complicated, it needs to communicate with your DNS provider. There is a manual option as provider at the end of the list. But then you need to do the manual process every 2 months. Docs.

At the moment I would be good with the manual 2 month process. The link you provided states that this can be done with a CNAME record. Unfortunately it does not appear to show enough information to make the proper CNAME record. I was told by my DNS provider that I would need to create a _acme-challenge txt record. I assume the txt will be from the acme.json file unfortunately I really do not know what information to use.