Listens on tls port 23456 and will echo back whatever is sent to the server.
- docker compose
- openssl
To start the Docker Compose stack defined in the compose.yaml file, use:
docker compose up -dopenssl s_client -connect localhost:23456 -CAfile test-ca.crt -quiet -alpn echooutput:
depth=1 C = US, ST = California, L = Palo Alto, O = Aklivity, OU = Development, CN = Test CA
verify return:1
depth=0 C = US, ST = California, L = Palo Alto, O = Aklivity, OU = Development, CN = localhost
verify return:1
Type a Hello, world message and press enter.
output:
Hello, world
Hello, world
To remove any resources created by the Docker Compose stack, use:
docker compose down