Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
kris
/
qrtesting
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
pq: introduces caddy with post quantum crypto
keep-around/7f12695beac7e08f9823d3e7cc13bb5387f277d7
Kris
6 anni fa
parent
e8534e5b70
commit
7f12695bea
5 ha cambiato i file
con
35 aggiunte
e
0 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file 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
Vedi File
@@ -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
Vedi File
@@ -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
Vedi File
@@ -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
Vedi File
+ 4
- 0
images/pq/index.html
Vedi File
@@ -0,0 +1,4 @@
<html><body>DUPA
<a href="https://git.amongbytes.com/kris/qrtesting/tree/master">Details</a>
</body></html>
Scrivi
Anteprima
Caricamento…
Annulla
Salva