Skip to content

Instantly share code, notes, and snippets.

@felddy
Created January 25, 2026 18:41
Show Gist options
  • Select an option

  • Save felddy/c7fa180dd09d8262e4d4a31a96e6ee4f to your computer and use it in GitHub Desktop.

Select an option

Save felddy/c7fa180dd09d8262e4d4a31a96e6ee4f to your computer and use it in GitHub Desktop.
Force "shortlived" profile on Acme managed certificates: pfSense acme 1.0.5
--- /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