Actions
Bug #15821
openpfSense-pkg-acme needs to be updated to use api.porkbun.com instead of porkbun.com
Status:
New
Priority:
Normal
Assignee:
-
Category:
ACME
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Plus Target Version:
Affected Version:
Affected Plus Version:
Affected Architecture:
Description
Porkbun recently made the decision to move their DNS API from porkbun.com to api.porkbun.com and the deadline for this change is 1st December '24. The pfSense-pkg-acme package currently still uses the old address and will break soon.
I have submitted a PR to fix this at https://github.com/pfsense/FreeBSD-ports/pull/1389
Updated by Adrien Carlyle 13 days ago
Patch for testing with 24.03, path strip count = 4,
diff --git a/security/pfSense-pkg-acme/files/usr/local/pkg/acme/dnsapi/dns_porkbun.sh b/security/pfSense-pkg-acme/files/usr/local/pkg/acme/dnsapi/dns_porkbun.sh
index ad4455b692c0..d88d38ff88a9 100755
--- a/security/pfSense-pkg-acme/files/usr/local/pkg/acme/dnsapi/dns_porkbun.sh
+++ b/security/pfSense-pkg-acme/files/usr/local/pkg/acme/dnsapi/dns_porkbun.sh
@@ -4,7 +4,7 @@
#PORKBUN_API_KEY="pk1_0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
#PORKBUN_SECRET_API_KEY="sk1_0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
-PORKBUN_Api="https://porkbun.com/api/json/v3"
+PORKBUN_Api="https://api.porkbun.com/api/json/v3"
######## Public functions #####################
Actions