https://github.com/liggitt/client-cert
Test server for echoing presented client certificate info
https://github.com/liggitt/client-cert
Last synced: 3 months ago
JSON representation
Test server for echoing presented client certificate info
- Host: GitHub
- URL: https://github.com/liggitt/client-cert
- Owner: liggitt
- Created: 2015-10-10T04:25:32.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-14T18:08:42.000Z (over 7 years ago)
- Last Synced: 2025-01-11T16:50:15.500Z (4 months ago)
- Language: Makefile
- Homepage: https://hub.docker.com/r/liggitt/client-cert/
- Size: 7.81 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Client Certificate Echoing Server
## Overview
This repo and Docker image provides a test image that listens on :9443 and echoes any client certificates presented to it.
To start, run like this:
```
docker run -p 9443:9443 -ti liggitt/client-cert
```# Docker image setup
### Build the Docker image from source
```
make build
```### Run the Docker image from source
```
make run
```
## Example Use```
curl -k https://localhost:9443/test --cert ./client.crt --key ./client.key
```