Add captcha documentation to config.md
authorEkaterina Vaartis <vaartis@cock.li>
Sat, 15 Dec 2018 19:12:20 +0000 (22:12 +0300)
committerEkaterina Vaartis <vaartis@cock.li>
Sat, 15 Dec 2018 19:12:20 +0000 (22:12 +0300)
config/config.exs
config/config.md

index b7d439e9da0f7c261ea37383c2bf832ff3fbc66d..5149e9c417018d6f21a8aacbe124da0d7234cbd7 100644 (file)
@@ -14,7 +14,6 @@ config :pleroma, Pleroma.Captcha,
   enabled: false,
   method: Pleroma.Captcha.Kocaptcha
 
-# Kocaptcha is a very simple captcha service, the source code is here: https://github.com/koto-bank/kocaptcha
 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "http://localhost:9093"
 
 # Upload configuration
index 8282eab1480a443b88b6c466cdeb264e1d09aded..e8b5e52cbf3c317e045091082073916d47f117e4 100644 (file)
@@ -7,7 +7,7 @@ If you run Pleroma with ``MIX_ENV=prod`` the file is ``prod.secret.exs``, otherw
 * `uploader`: Select which `Pleroma.Uploaders` to use
 * `filters`: List of `Pleroma.Upload.Filter` to use.
 * `base_url`: The base URL to access a user-uploaded file. Useful when you want to proxy the media files via another host.
-* `proxy_remote`: If you're using a remote uploader, Pleroma will proxy media requests instead of redirecting to it.
+* `proxy_remote`: If you\'re using a remote uploader, Pleroma will proxy media requests instead of redirecting to it.
 * `proxy_opts`: Proxy options, see `Pleroma.ReverseProxy` documentation.
 
 Note: `strip_exif` has been replaced by `Pleroma.Upload.Filter.Mogrify`.
@@ -163,3 +163,13 @@ Web Push Notifications configuration. You can use the mix task `mix web_push.gen
 * ``subject``: a mailto link for the administrative contact. It’s best if this email is not a personal email address, but rather a group email so that if a person leaves an organization, is unavailable for an extended period, or otherwise can’t respond, someone else on the list can.
 * ``public_key``: VAPID public key
 * ``private_key``: VAPID private key
+
+## Pleroma.Captcha
+* `enabled`: Whether the captcha should be shown on registration
+* `method`: The method/service to use for captcha
+
+### Pleroma.Captcha.Kocaptcha
+Kocaptcha is a very simple captcha service with a single API endpoint,
+the source code is here: https://github.com/koto-bank/kocaptcha
+
+* `endpoint`: the kocaptcha endpoint to use
\ No newline at end of file