Update development docs
[akkoma] / docs / configuration / howto_proxy.md
index 10a635266a17555bec17c8137078d4923a40cb41..2ddd7319291d2a95ec5d75988ca620bddca81553 100644 (file)
@@ -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}
 ```