You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
811 B

  1. The Automatic Certificate Management Environment (ACME), is an internet standard ([RFC 8555](https://tools.ietf.org/html/rfc8555)) which allows to automate X.509 certificates signing by a Certification Authority (CA). ACMEd is one of the many clients for this protocol.
  2. # Key features
  3. - HTTP-01 and DNS-01 challenges
  4. - RSA 2048, RSA 4096, ECDSA P-256 and ECDSA P-384 certificates
  5. - Fully customizable challenge validation action
  6. - Run as a deamon: no need to set-up timers, crontab or other time-triggered process
  7. - Nice and simple configuration file
  8. # Build
  9. In order to compile ADMEd, you will need the latest stable version of [Rust](https://www.rust-lang.org/), although it should work with versions as low as 1.31.
  10. ```
  11. cargo build --release
  12. ```
  13. The executable is located in `target/release/acmed`.