README.md aktualisiert

This commit is contained in:
Phil 2024-02-19 19:58:23 +01:00
parent ee8a35b1c7
commit 17957cf624

View file

@ -1,3 +1,28 @@
# haproxy-template # haproxy-template
short template for certbot dns-01 with renew option short template for certbot dns-01 with renew option (Alpine 3.19 / LXC Proxmox)
## Installation
Add Edge Repos to /etc/apk/repositories
```
@edge https://dl-cdn.alpinelinux.org/alpine/edge/main
@edgecommunity https://dl-cdn.alpinelinux.org/alpine/edge/community
@edgetesting https://dl-cdn.alpinelinux.org/alpine/edge/testing
```
Update system & install utils
```
apk update -y && apk upgrade -y && apk add nano
```
Make Folder structure
```
cd && mkdir -p /storage/certs && mkdir -p /storage/cf-tokens && mkdir -p /storage/hooks && chmod 777 -R /storage
```
Install haproxy and cloudflare-dns
```
apk add haproxy certbot@edgecommunity certbot-dns-cloudflare@edgecommunity
```