이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
kris
/
qrtesting
보기
1
좋아요
0
포크
0
코드
이슈
0
풀 리퀘스트
0
릴리즈
0
위키
활동
소스 검색
pq: introduces caddy with post quantum crypto
keep-around/7f12695beac7e08f9823d3e7cc13bb5387f277d7
Kris
6 년 전
부모
e8534e5b70
커밋
7f12695bea
5개의 변경된 파일
과
35개의 추가작업
그리고
0개의 파일을 삭제
분할 보기
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
파일 보기
@@ -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
파일 보기
@@ -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
파일 보기
@@ -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
파일 보기
+ 4
- 0
images/pq/index.html
파일 보기
@@ -0,0 +1,4 @@
<html><body>DUPA
<a href="https://git.amongbytes.com/kris/qrtesting/tree/master">Details</a>
</body></html>
쓰기
미리보기
불러오는 중...
취소
저장