akkoma/docs/docs/configuration/howto_proxy.md
floatingghost d2a185c013
Some checks are pending
ci/woodpecker/push/docs Pipeline is pending
ci/woodpecker/push/release Pipeline is pending
ci/woodpecker/push/test Pipeline is pending
Documentation updates for stable release (#73)
Reviewed-on: #73
2022-07-15 12:27:16 +00:00

439 B

How to configure upstream proxy for federation

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 can be done like so:

config :pleroma, :http, proxy_url: {:socks5, :localhost, 9050}