From 1f733b04f7cdeef000ec98f59f409af568d5e566 Mon Sep 17 00:00:00 2001 From: Marc 'risson' Schmitt Date: Wed, 28 Feb 2024 17:48:24 +0100 Subject: [PATCH] website/docs: s3: fix migration docs (#8735) --- website/docs/installation/storage-s3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/installation/storage-s3.md b/website/docs/installation/storage-s3.md index 4ef616a4d6..f28b5dc76d 100644 --- a/website/docs/installation/storage-s3.md +++ b/website/docs/installation/storage-s3.md @@ -94,11 +94,11 @@ The following section assumes that the local storage path is `/media` and the bu Follow the setup steps above, and then migrate the files from your local directory to s3: ```bash -aws s3 sync /media s3://authentik-media +aws s3 sync /media s3://authentik-media/media ``` #### From s3 to file ```bash -aws s3 sync s3://authentik-media /media +aws s3 sync s3://authentik-media/media /media ```