Docker image for a Python-based mutual TLS (mTLS) demo server.
398
Docker image for a Python-based mutual TLS (mTLS) demo server.
This server exposes an HTTPS endpoint protected with client certificate authentication and is intended for local testing, learning, and demo purposes.
GET /todoPOST /todo8443docker run -d --rm --name mtls-server -p 8443:8443 ruben69695/mtls-server:latest
The server will be available at:
https://127.0.0.1:8443/todo
curl --cert certs/client.crt \
--key certs/client.key \
--cacert certs/ca.crt \
https://127.0.0.1:8443/todo
Author repository: Jordi Martin
Project repository: mTLS-lab
Content type
Image
Digest
sha256:151bcec9e…
Size
41.2 MB
Last updated
6 months ago
docker pull ruben69695/mtls-server