Simple test to show TLS over UDS
To run:
go test -v -timeout 1s
The third test hangs (ClientUsesTLS
) at the moment. The output does look like the client has encrypted the data as it got sent to the listner.
Simple test to show TLS over UDS
To run:
go test -v -timeout 1s
The third test hangs (ClientUsesTLS
) at the moment. The output does look like the client has encrypted the data as it got sent to the listner.
FROM python:3.11 | |
WORKDIR /usr/src/app | |
COPY requirements.txt ./ | |
RUN pip install --no-cache-dir -r requirements.txt | |
COPY app.py . |