X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=docs%2Fconfiguration%2Fhowto_proxy.md;h=2ddd7319291d2a95ec5d75988ca620bddca81553;hb=bc6bfe383f642e74bbf09828181d9c89b1b17f05;hp=10a635266a17555bec17c8137078d4923a40cb41;hpb=31e57cd1b34798afb07a8de4c0c95ef3c15e22ed;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} ```