From 7f5d708977bdde06e3c3bf89d364ccc7c2f4c27f Mon Sep 17 00:00:00 2001 From: tteckster Date: Wed, 13 Sep 2023 04:20:38 -0400 Subject: [PATCH] Update nginxproxymanager-install.sh - add plugin for certbot to obtain certificates using a DNS TXT record for Porkbun domains - fixes https://github.com/tteck/Proxmox/issues/1790 --- install/nginxproxymanager-install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install/nginxproxymanager-install.sh b/install/nginxproxymanager-install.sh index 640227d9..6946848c 100644 --- a/install/nginxproxymanager-install.sh +++ b/install/nginxproxymanager-install.sh @@ -30,7 +30,7 @@ $STD apt-get -y install \ git msg_ok "Installed Dependencies" -msg_info "Updating Python" +msg_info "Installing Python Dependencies" $STD apt-get install -y \ python3 \ python3-dev \ @@ -38,10 +38,10 @@ $STD apt-get install -y \ python3-venv \ python3-cffi \ python3-certbot \ - python3-certbot-dns-cloudflare - + python3-certbot-dns-cloudflare \ + pip3 install certbot_dns_porkbun $STD python3 -m venv /opt/certbot/ -msg_ok "Updated Python" +msg_ok "Installed Python Dependencies" VERSION="$(awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release)"