summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorLain Soykaf <lain@lain.com>2023-06-11 16:20:30 +0400
committerLain Soykaf <lain@lain.com>2023-06-11 16:20:30 +0400
commit175ee9e6fec2f9262e4f9e31ce300bd77149b3a7 (patch)
tree974aa947a3bedb9dc76c0e400eab1b7d94502a0a /config
parentd91a823836f416dc0bdf0fe8527695d372dcb347 (diff)
parent16313af7eb1c3b92210e0c0762e74c051bdde5f2 (diff)
downloadpleroma-175ee9e6fec2f9262e4f9e31ce300bd77149b3a7.tar.gz
pleroma-175ee9e6fec2f9262e4f9e31ce300bd77149b3a7.zip
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into unused_indexes
Diffstat (limited to 'config')
-rw-r--r--config/config.exs3
-rw-r--r--config/description.exs39
2 files changed, 0 insertions, 42 deletions
diff --git a/config/config.exs b/config/config.exs
index e41ec2f91..178b6be99 100644
--- a/config/config.exs
+++ b/config/config.exs
@@ -617,9 +617,6 @@ config :pleroma, :ldap,
base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
uid: System.get_env("LDAP_UID") || "cn"
-config :esshd,
- enabled: false
-
oauth_consumer_strategies =
System.get_env("OAUTH_CONSUMER_STRATEGIES")
|> to_string()
diff --git a/config/description.exs b/config/description.exs
index 78dc8770d..5f8add8a4 100644
--- a/config/description.exs
+++ b/config/description.exs
@@ -2629,45 +2629,6 @@ config :pleroma, :config_description, [
]
},
%{
- group: :esshd,
- label: "ESSHD",
- type: :group,
- description:
- "Before enabling this you must add :esshd to mix.exs as one of the extra_applications " <>
- "and generate host keys in your priv dir with ssh-keygen -m PEM -N \"\" -b 2048 -t rsa -f ssh_host_rsa_key",
- children: [
- %{
- key: :enabled,
- type: :boolean,
- description: "Enables SSH"
- },
- %{
- key: :priv_dir,
- type: :string,
- description: "Dir with SSH keys",
- suggestions: ["/some/path/ssh_keys"]
- },
- %{
- key: :handler,
- type: :string,
- description: "Handler module",
- suggestions: ["Pleroma.BBS.Handler"]
- },
- %{
- key: :port,
- type: :integer,
- description: "Port to connect",
- suggestions: [10_022]
- },
- %{
- key: :password_authenticator,
- type: :string,
- description: "Authenticator module",
- suggestions: ["Pleroma.BBS.Authenticator"]
- }
- ]
- },
- %{
group: :mime,
label: "Mime Types",
type: :group,