Merge branch 'develop' into default-db-name
[akkoma] / docs / configuration / storing_remote_media.md
index 7e91fe7d9a199e9c7002af87f336a3860c77a36e..ebea013395baab392f460622bf43f9b30a47ac99 100644 (file)
@@ -1,17 +1,17 @@
 # Storing Remote Media
 
-Pleroma does not store remote/federated media by default. The best way to achieve this is to change Nginx to keep its reverse proxy cache
-for a year and to activate the `MediaProxyWarmingPolicy` MRF policy in Pleroma which will automatically fetch all media through the proxy
+Akkoma does not store remote/federated media by default. The best way to achieve this is to change Nginx to keep its reverse proxy cache
+for a year and to activate the `MediaProxyWarmingPolicy` MRF policy in Akkoma which will automatically fetch all media through the proxy
 as soon as the post is received by your instance.
 
 ## Nginx
 
 ```
-    proxy_cache_path /long/term/storage/path/pleroma-media-cache levels=1:2
-        keys_zone=pleroma_media_cache:10m inactive=1y use_temp_path=off;
+    proxy_cache_path /long/term/storage/path/akkoma-media-cache levels=1:2
+        keys_zone=akkoma_media_cache:10m inactive=1y use_temp_path=off;
 
     location ~ ^/(media|proxy) {
-        proxy_cache        pleroma_media_cache;
+        proxy_cache        akkoma_media_cache;
         slice              1m;
         proxy_cache_key    $host$uri$is_args$args$slice_range;
         proxy_set_header   Range $slice_range;
@@ -28,11 +28,11 @@ as soon as the post is received by your instance.
     }
 ```
 
-## Pleroma
+## Akkoma
 
 Add to your `prod.secret.exs`:
 
 ```
-config :pleroma, :instance,
-  rewrite_policy: [Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy]
+config :pleroma, :mrf,
+  policies: [Pleroma.Web.ActivityPub.MRF.MediaProxyWarmingPolicy]
 ```