ACME

command module
v0.0.0-...-28ab817 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 13, 2022 License: MIT Imports: 4 Imported by: 0

README

Thin LetsEncrypt ACME client, challenge server, and management API written in go.

Go Version Go Reference Maintainability Go Report License


Why?

Working with SSL inside of Docker swarm, with HAProxy, powering it can be a complex thing. If you add a ton of domains, and dynamic custom domains into the mix, it seems almost impossible. Current solutions rely on bash scripts and really have no good way of handling dynamic domains. To solve this, we've created our own ACME client which will be used inside a docker container. This client has 4 responsibilities:

  • Exposing an API that can be hit to issue a new certificate for a domain pointed at our ingress servers
  • Creating a temporary challenge server per certificate request to validate the domain
  • Managing LetsEncrypt user accounts as to not get rate limited
  • Managing our certificate store and backing it up to S3
    • Issuing new certificates for new domains against the challenge server
    • Automatically renewing certificates that will expire soon
    • Archiving old certificates

Usage

Pre-requisites

  • A valid top level domain name (/etc/hosts entries will not work for this)
  • A linux VM with docker installed on it and ports 80/tcp, 443/tcp, 9022/tcp exposed to the outside world

Note: These ports may be different if you adjusted the configuration

This project will not be something you can run locally on Docker for Mac for a true end-to-end test, you will need linux based server that can properly expose ports to the outside world.

Quick start

  1. Install Taskfile if you haven't already
  2. Git clone this repsoitroy to your VM:
  3. Start the stack (task docker:dev)
  4. Add an API user (task add:user -- [email] [plain text password])

Configuration

Most of the configuration is handled through yaml files in the config folder. By default, we include 3 config files:

  • testing.yaml
  • development.yaml
  • production.yaml

Each of these config files correlate to the mode. This allows you to add more config files than the defaults included, just ensure you set the mode to the name you gave the file. All files other than production.yaml will start the server in debug mode with additional logging.

Modes

Mode is controlled via the ACME_ENV environment variable. Possible values are:

  • development
  • production
  • testing
  • your-custom-modes-here

Custom modes require a corresponding .yaml file. For example if you set ACME_ENV to staging, you would need the corresponding config file config/staging.yaml.

The CLI

$ go run . --help
Thin Let's Encrypt ACME client and challenge server written in go.

Usage:
  acme [command]

Available Commands:
  add         Adds a new API authorized user to the database
  completion  Generate the autocompletion script for the specified shell
  hash        Returns a hashed version of a plaintext password
  help        Help about any command
  ping        Returns the health status of your server
  start       Start the web server

Flags:
  -h, --help      help for acme
  -v, --version   version for acme

Use "acme [command] --help" for more information about a command.

The API

When working with the API, you can use the build time generated openapi 2.0 specification file. Once you start your server as detailed in Quick start , you can visit http://127.0.0.1:9022/openapi to view the openapi 2.0 specification file. This file can be used by tools such as Postman to work with the API.

Attributions

Sponsors

A special call out to ChargeOver for being the reason this project even exists in the first place. If your business runs billing or invoicing through any other platform you would be doing yourself a disservice not checking out ChargeOver! Best in class support, with a team that works with you to maximize your MRR.

This project was made possible by the wonderful developers over at lego acme. Lego acme was used as the base ACME client with a few small tweaks to make it easily compatible with the web which power interfacing with Lets Encrypt.

Also, a special thank you to JetBrains for providing a free license to GoLand to support the development of this project.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL