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
WIP
dev-wip
Kris
6 years ago
parent
000aeb893a
commit
25bfbeddd6
3 changed files
with
15 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
images/pq-gcc/Dockerfile
+9
-0
images/pq-gcc/Makefile
BIN
+ 6
- 0
images/pq-gcc/Dockerfile
View File
@@ -0,0 +1,6 @@
FROM buildpack-deps
EXPOSE 443
ADD bin/bssl /
CMD [ "./bssl", "server", "-curves", "X25519:P-256:X25519-SIDHp503", "-accept", "443", "-loop", "-www" ]
+ 9
- 0
images/pq-gcc/Makefile
View File
@@ -0,0 +1,9 @@
NAME=pq-gcc-amd64
PORT=50601
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