Files
org-roam/20230420014604-letsencrypt_helper.org
2025-11-05 09:18:11 +01:00

1.1 KiB

letsencrypt-helper

docker container that lets you use SSL certificates. works good with nginx and traefik as reverse proxies. If you self sign your ssl certificatecertificates you could use this code in docker-compose (not tested):

 # self signed
  omgwtfssl:
    image: paulczar/omgwtfssl
    restart: "no"
    volumes:
      - certs:/certs
    environment:
      - SSL_SUBJECT=servhostname.local
      - CA_SUBJECT=my@example.com
      - SSL_KEY=/certs/servhostname.local.key
      - SSL_CSR=/certs/servhostname.local.csr
      - SSL_CERT=/certs/servhostname.local.crt
    networks:
      - proxy-tier