pq: introduces caddy with post quantum crypto

Este commit está contenido en:
Kris 2018-10-14 17:42:37 +00:00
padre e8534e5b70
commit 7f12695bea
Se han modificado 5 ficheros con 35 adiciones y 0 borrados

9
images/pq/Caddyfile Archivo normal
Ver fichero

@ -0,0 +1,9 @@
:443 {
tls fullchain.pem privkey.pem
tls {
protocols tls1.2 tls1.3
curves X25519 P256 "SIDH/503-X25519"
}
log stdout
ext .html
}

10
images/pq/Dockerfile Archivo normal
Ver fichero

@ -0,0 +1,10 @@
FROM buildpack-deps
EXPOSE 443
ADD certs/privkey.pem /
ADD certs/fullchain.pem /
ADD bin/caddy /
ADD Caddyfile /
ADD index.html /
CMD [ "/caddy", "-conf", "/Caddyfile" ]

12
images/pq/Makefile Archivo normal
Ver fichero

@ -0,0 +1,12 @@
NAME=pq
PORT=50511
build:
mkdir -p certs
cp ../../cert/fullchain.pem certs/
cp ../../cert/privkey.pem certs/
docker build -t ${NAME} .
run:
docker run --detach --restart always --name ${NAME} -p ${PORT}:443 ${NAME}
restart:
docker restart ${NAME}

BIN
images/pq/bin/caddy Archivo ejecutable

Archivo binario no mostrado.

4
images/pq/index.html Archivo normal
Ver fichero

@ -0,0 +1,4 @@
<html><body>DUPA
<a href="https://git.amongbytes.com/kris/qrtesting/tree/master">Details</a>
</body></html>