diff options
author | Sean King <seanking2919@protonmail.com> | 2023-05-31 12:22:13 -0600 |
---|---|---|
committer | Sean King <seanking2919@protonmail.com> | 2023-05-31 12:22:13 -0600 |
commit | a2bbd7c9dadad42c995e7627a559673f04c2618b (patch) | |
tree | c92ac6df34a2bf4425de7e18515eeb830f55f974 /docs/configuration | |
parent | e92eb5f4823fbb6c01218ec72ad8d41fb12e20a1 (diff) | |
download | pleroma-a2bbd7c9dadad42c995e7627a559673f04c2618b.tar.gz pleroma-a2bbd7c9dadad42c995e7627a559673f04c2618b.zip |
Fix base media and proxy URL in instructions to serve media on another domain
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/hardening.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/configuration/hardening.md b/docs/configuration/hardening.md index 4f40873e6..493ba608c 100644 --- a/docs/configuration/hardening.md +++ b/docs/configuration/hardening.md @@ -68,10 +68,10 @@ It is STRONGLY RECOMMENDED to serve both the locally-uploaded media and the medi ```elixir config :pleroma, :media_proxy, - base_url: "https://some.other.domain" + base_url: "https://some.other.domain/proxy" config :pleroma, Pleroma.Upload, - base_url: "https://some.other.domain" + base_url: "https://some.other.domain/media" ``` See `installation/pleroma-mediaproxy.nginx` for examples on how to configure your media proxy. |