From 345b2b10f7e1d35e021f0dcd3e34db545d831781 Mon Sep 17 00:00:00 2001 From: Adora Laura Kalb Date: Sun, 28 Jul 2024 14:28:21 +0200 Subject: [PATCH] clean up old docs --- docs/content/docs/configuration/_index.md | 4 ---- docs/content/docs/introduction/_index.md | 29 ----------------------- 2 files changed, 33 deletions(-) delete mode 100644 docs/content/docs/configuration/_index.md delete mode 100644 docs/content/docs/introduction/_index.md diff --git a/docs/content/docs/configuration/_index.md b/docs/content/docs/configuration/_index.md deleted file mode 100644 index ff2b443..0000000 --- a/docs/content/docs/configuration/_index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -title: Configuration -type: docs ---- diff --git a/docs/content/docs/introduction/_index.md b/docs/content/docs/introduction/_index.md deleted file mode 100644 index 13114a5..0000000 --- a/docs/content/docs/introduction/_index.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: Introduction -type: docs ---- - -# Introduction - -## CertWarden - -[CertWarden](https://www.certwarden.com/) is a self-hosted Centralized ACME Certificate Management platform. With it you can manage and aquire Let's Encrypt certificates. - -However, to deploy them to your hosts, for now there only was a docker client, and that was too bloated for me. - -So I built `certwarden-deploy`, a dependency-less binary that can run via crontab/systemd timers and that can fetch new certificates and run actions after new certificates got rolled out. - -## Quick Start - -Installation of the required CertWarden instance is out of scope of this documentation. For detailed instructions regarding CertWarden, please visit [it's documentation](https://www.certwarden.com/docs/introduction/) - - -To quickly get started with `certwarden-deploy`, just download the binary and run it. - -```shell -# this downloads certwarden-deploy version 0.1.1 -# to /usr/local/bin/certwarden-deploy -sudo wget https://code.lila.network/adoralaura/certwarden-deploy/releases/download/0.1.1/certwarden-deploy-0.1.1-linux-amd64 -O /usr/local/bin/certwarden-deploy - -sudo chmod +x /usr/local/bin/certwarden-deploy -```