Este sítio funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Iniciar sessão
kris
/
qrtesting
Vigiar
1
Marcar como favorito
0
Derivar
0
Código
Questões
0
Pedidos de integração
0
Lançamentos
0
Wiki
Trabalho
Ver a proveniência
pq: introduces caddy with post quantum crypto
keep-around/7f12695beac7e08f9823d3e7cc13bb5387f277d7
Kris
há 6 anos
ascendente
e8534e5b70
cometimento
7f12695bea
5 ficheiros alterados
com
35 adições
e
0 eliminações
Visualização em 2 colunas
Opções das diferenças
Mostrar estatísticas
Descarregar ficheiro patch
Descarregar ficheiro diff
+9
-0
images/pq/Caddyfile
+10
-0
images/pq/Dockerfile
+12
-0
images/pq/Makefile
BIN
+4
-0
images/pq/index.html
+ 9
- 0
images/pq/Caddyfile
Ver ficheiro
@@ -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
- 0
images/pq/Dockerfile
Ver ficheiro
@@ -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
- 0
images/pq/Makefile
Ver ficheiro
@@ -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
Ver ficheiro
+ 4
- 0
images/pq/index.html
Ver ficheiro
@@ -0,0 +1,4 @@
<html><body>DUPA
<a href="https://git.amongbytes.com/kris/qrtesting/tree/master">Details</a>
</body></html>
Escrever
Pré-visualizar
Carregando…
Cancelar
Guardar