diff --git a/admin-remote-storage.md b/admin-remote-storage.md index 0817bca14756e405fbcddd3a00bc0304b3bb82ba..3c388744833032e6eecb6433d1c8bd9db38539a8 100644 --- a/admin-remote-storage.md +++ b/admin-remote-storage.md @@ -6,9 +6,9 @@ is done via FUSE, for instance with [s3fs](https://github.com/s3fs-fuse/s3fs-fus ```bash export S3_STORAGE=/var/www/peertube/s3-storage mkdir $S3_STORAGE -mount --bind /var/www/peertube/storage/videos $S3_STORAGE/videos -mount --bind /var/www/peertube/storage/redundancy $S3_STORAGE/redundancy -mount --bind /var/www/peertube/storage/streaming-playlists $S3_STORAGE/streaming-playlists +mount --bind $S3_STORAGE/videos /var/www/peertube/storage/videos +mount --bind $S3_STORAGE/redundancy /var/www/peertube/storage/redundancy +mount --bind $S3_STORAGE/streaming-playlists /var/www/peertube/storage/streaming-playlists s3fs your-space-name /var/www/peertube/s3-storage -o url=https://region.digitaloceanspaces.com -o allow_other -o use_path_request_style -o uid=1000 -o gid=1000 ```