This website works better with JavaScript.
Home
Explore
Help
Sign In
kris
/
qrtesting
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
pq-t2: for TLS 1.3 only
keep-around/9b9d3f7b2a483eea20fd1c1d14c99aa82dfef514
Kris
6 years ago
parent
6bc0509611
commit
9b9d3f7b2a
3 changed files
with
17 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
images/pq-t2/Dockerfile
+9
-0
images/pq-t2/Makefile
BIN
+ 8
- 0
images/pq-t2/Dockerfile
View File
@@ -0,0 +1,8 @@
FROM buildpack-deps
EXPOSE 443
ADD certs/privkey.pem /
ADD certs/fullchain.pem /
ADD bin/server /
CMD [ "/server", "-b", "0.0.0.0:443", "-qr", "-cert", "/privkey.pem:/fullchain.pem" ]
+ 9
- 0
images/pq-t2/Makefile
View File
@@ -0,0 +1,9 @@
NAME=pq-t2
PORT=50511
build:
docker build -t ${NAME} .
run:
docker run --detach --restart always --name ${NAME} -p ${PORT}:443 ${NAME}
restart:
docker restart ${NAME}
BIN
View File
Write
Preview
Loading…
Cancel
Save