Skip to content

Instantly share code, notes, and snippets.

View anthonyraymond's full-sized avatar
🌳

Anthony Raymond anthonyraymond

🌳
View GitHub Profile
@anthonyraymond
anthonyraymond / acme-cert-dump-all.py
Created April 30, 2020 00:16 — forked from JayH5/acme-cert-dump-all.py
Dump all certificates from Traefik's acme.json to .pem files (traefik 2.0 with letsencrypt)
#!/usr/bin/env python
import argparse
import base64
import json
import os
def main():
parser = argparse.ArgumentParser(
description="Dump all certificates out of Traefik's acme.json file")