I hereby claim:
- I am jcjones on github.
- I am pug (https://keybase.io/pug) on keybase.
- I have a public key whose fingerprint is EA9F F90C 541F 3487 2CA0 26FB BD4E B26B 978D F884
To claim this, I am signing this object:
#!/bin/bash | |
TOPIC=$(git symbolic-ref --short HEAD 2>/dev/null) | |
DEST=master | |
die() { | |
echo $@ | |
exit 1 | |
} | |
git pull --rebase origin ${DEST} || die |
#!/bin/bash | |
# run from Boulder dev directory | |
OCSP="http://ocsp.int-x1.letsencrypt.org/" | |
CA_CERT="test/test-ca.pem" | |
SERIAL=0x02000000000000016DD50EDFA6DAAF26 | |
openssl ocsp -no_nonce -reqout /tmp/ocsp.req \ | |
-issuer ${CA_CERT} \ | |
-serial ${SERIAL} \ |
These scripts help you to run Boulder + CFSSL in Docker in monolithic mode. | |
Easy use: | |
git clone https://gist.github.com/ce9ca04e94cd9244e18a.git boulder-docker | |
cd boulder-docker/ | |
./boulder-docker.sh start | |
Note: You will need to execute `boulder-docker.sh` as a user with privileges to access Docker. |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python | |
import socket | |
import struct | |
import sys | |
# We want unbuffered stdout so we can provide live feedback for | |
# each TTL. You could also use the "-u" flag to Python. | |
class flushfile(file): | |
def __init__(self, f): |