Compare commits

..

3 Commits

Author SHA1 Message Date
tteckster
fc49442ff8 Update nginxproxymanager-install.sh
tweak
2023-09-13 07:27:42 -04:00
tteckster
acdd9f8203 Update nginxproxymanager-install.sh
remove `\`
2023-09-13 07:25:40 -04:00
tteckster
7f5d708977 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
2023-09-13 04:20:38 -04:00

View File

@@ -30,7 +30,7 @@ $STD apt-get -y install \
git git
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Updating Python" msg_info "Installing Python Dependencies"
$STD apt-get install -y \ $STD apt-get install -y \
python3 \ python3 \
python3-dev \ python3-dev \
@@ -39,9 +39,9 @@ $STD apt-get install -y \
python3-cffi \ python3-cffi \
python3-certbot \ python3-certbot \
python3-certbot-dns-cloudflare python3-certbot-dns-cloudflare
$STD pip3 install certbot_dns_porkbun
$STD python3 -m venv /opt/certbot/ $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)" VERSION="$(awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release)"