diff options
author | Mark Felder <feld@feld.me> | 2024-09-17 13:28:42 -0400 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2024-09-17 13:40:15 -0400 |
commit | 14a9663f1abe49b8f4f4f719fa2f4db3a5dd81b7 (patch) | |
tree | 283c1d0f938c4fda61215017a5a4f5a694b938b0 | |
parent | a1972d57e30f41e5173d61c0d0936685738c560d (diff) | |
download | pleroma-14a9663f1abe49b8f4f4f719fa2f4db3a5dd81b7.tar.gz pleroma-14a9663f1abe49b8f4f4f719fa2f4db3a5dd81b7.zip |
Remove cacertfile as child of SSL and TLS options
We need to pass the cacerts (list of charlist encoded certs) not cacertfile, so our new cacertfile setting handles this for us.
-rw-r--r-- | config/description.exs | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/config/description.exs b/config/description.exs index ade47b7e0..5062842f0 100644 --- a/config/description.exs +++ b/config/description.exs @@ -2241,15 +2241,9 @@ config :pleroma, :config_description, [ label: "SSL options", type: :keyword, description: "Additional SSL options", - suggestions: [cacertfile: "path/to/file/with/PEM/cacerts", verify: :verify_peer], + suggestions: [verify: :verify_peer], children: [ %{ - key: :cacertfile, - type: :string, - description: "Path to file with PEM encoded cacerts", - suggestions: ["path/to/file/with/PEM/cacerts"] - }, - %{ key: :verify, type: :atom, description: "Type of cert verification", @@ -2268,15 +2262,9 @@ config :pleroma, :config_description, [ label: "TLS options", type: :keyword, description: "Additional TLS options", - suggestions: [cacertfile: "path/to/file/with/PEM/cacerts", verify: :verify_peer], + suggestions: [verify: :verify_peer], children: [ %{ - key: :cacertfile, - type: :string, - description: "Path to file with PEM encoded cacerts", - suggestions: ["path/to/file/with/PEM/cacerts"] - }, - %{ key: :verify, type: :atom, description: "Type of cert verification", |