X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=docs%2Fconfiguration%2Fhowto_proxy.md;h=2ddd7319291d2a95ec5d75988ca620bddca81553;hb=5ad256f170c29a864b0f720acc8302b347fd9b25;hp=10a635266a17555bec17c8137078d4923a40cb41;hpb=91e90aa807c2ce346cd453201447806fb71b21fe;p=akkoma diff --git a/docs/configuration/howto_proxy.md b/docs/configuration/howto_proxy.md index 10a635266..2ddd73192 100644 --- a/docs/configuration/howto_proxy.md +++ b/docs/configuration/howto_proxy.md @@ -1,12 +1,12 @@ # How to configure upstream proxy for federation -If you want to proxify all http requests (e.g. for TOR) that pleroma makes to an upstream proxy server, edit you config file (`dev.secret.exs` or `prod.secret.exs`) and add the following: +If you want to proxify all http requests (e.g. for TOR) that Akkoma makes to an upstream proxy server, edit your config file (`dev.secret.exs` or `prod.secret.exs`) and add the following: ``` config :pleroma, :http, proxy_url: "127.0.0.1:8123" ``` -The other way to do it, for example, with Tor you would most likely add something like this: +The other way to do it, for example, with Tor can be done like so: ``` config :pleroma, :http, proxy_url: {:socks5, :localhost, 9050} ```