Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wackysysadmin authored Jun 7, 2024
1 parent 18b9b5c commit d8d7a75
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Containerised OCSP Server
# Containerised OCSP Responder
This is a containerised version of the OCSP responder built into OpenSSL.

Had built this to add onto my certificates primarily remove the warning on Microsoft's Terminal Services Client about being unable to validate the certificate against a responder when RDP'ing onto a server.
Expand All @@ -22,15 +22,15 @@ This container relies on already having the following:
* OCSP_LOG_FILE: "/data/ocsp.log" # OCSP process's output log file, HTTP access logs and responses.

<h2>Using Docker Compose</h2>
Create a docker-compose.yml file with the contents of https://github.com/wackysysadmin/ocsp-server-container/blob/main/docker-compose.yml.
Create a docker-compose.yml file with the contents of https://github.com/wackysysadmin/ocsp-responder-container/blob/main/docker-compose.yml.

Bring up the OCSP responder server.
```
docker compose up -d
```

```
docker logs ocsp-server
docker logs ocsp-responder
ACCEPT 0.0.0.0:2560 PID=1
ocsp: waiting for OCSP client connections...
```
Expand All @@ -45,11 +45,11 @@ Serving an OCSP responder over HTTPS <a href=https://datatracker.ietf.org/doc/ht
<h3>Building the container from scratch</h3>
The container can be built manually, it is only an Alpine image with OpenSSL and CMD values set.

Enter a directory and create a Dockerfile with the contents from <a href=https://github.com/wackysysadmin/ocsp-server-container/blob/main/Dockerfile>here</a>.
Enter a directory and create a Dockerfile with the contents from <a href=https://github.com/wackysysadmin/ocsp-responder-container/blob/main/Dockerfile>here</a>.

Create the container using build command:
```
docker build -t ocsp-server:latest .
docker build -t ocsp-responder:latest .
```
<h1>Known issues</h1>

Expand Down

0 comments on commit d8d7a75

Please sign in to comment.