Created
January 25, 2026 18:41
-
-
Save felddy/c7fa180dd09d8262e4d4a31a96e6ee4f to your computer and use it in GitHub Desktop.
Force "shortlived" profile on Acme managed certificates: pfSense acme 1.0.5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- /usr/local/pkg/acme/acme_sh.inc | |
| +++ /usr/local/pkg/acme/acme_sh.inc | |
| @@ -183,6 +183,9 @@ | |
| if (!empty($this->preferredchain)) { | |
| $cmdparameters .= " --preferred-chain " . escapeshellarg($this->preferredchain); | |
| } | |
| + /* patch: Force Let's Encrypt "shortlived" profile */ | |
| + /* see: https://redmine.pfsense.org/issues/16604 */ | |
| + $cmdparameters .= " --cert-profile " . escapeshellarg("shortlived"); | |
| if (!empty($this->addressfamily)) { | |
| if ($this->addressfamily == 'ipv4') { | |
| $cmdparameters .= " --request-v4"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment