ACME with Kong storage
Configure the ACME plugin with Kong Gateway as the storage backend.
Note: This option is not supported in Konnect or DB-less mode.
Prerequisites
-
A public IP and a resolvable DNS
-
Kong Gateway accepts proxy traffic on port 80
Add this section to your declarative configuration file:
_format_version: "3.0"
plugins:
- name: acme
config:
account_email: ${{ env "DECK_EMAIL" }}
account_key:
key_id: ${{ env "DECK_KEY_ID" }}
key_set: ${{ env "DECK_KEY_SET" }}
domains:
- ${{ env "DECK_DOMAIN" }}
tos_accepted: true
storage: kong
Copied to clipboard!