Skip to content

Commit

Permalink
Update page.md (#391)
Browse files Browse the repository at this point in the history
remove --disable-http2 flag which is no longer beneficial
  • Loading branch information
pwilloughby authored May 30, 2024
1 parent afa23f3 commit 00db477
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions app/dcs/getting-started/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,14 +175,10 @@ Copy the file to your bucket.
{% tabs %}
{% tab label="rclone" %}

{% callout type="info" %}
Using `--disable-http2` with rclone for Storj is recommended for increased transfer speeds by avoiding HTTP/2 specific issues.
{% /callout %}

```shell {% title="rclone" %}
# link[8:11] https://rclone.org/commands/rclone_copy/
# terminal
rclone copy --disable-http2 ~/Downloads/storj-tree.png storj:my-bucket/
rclone copy ~/Downloads/storj-tree.png storj:my-bucket/
```

{% /tab %}
Expand All @@ -208,14 +204,10 @@ To retrieve the file, use the same command as upload but reverse the order of th
{% tabs %}
{% tab label="rclone" %}

{% callout type="info" %}
Using `--disable-http2` with rclone for Storj is recommended for increased transfer speeds by avoiding HTTP/2 specific issues.
{% /callout %}

```shell {% title="rclone" %}
# terminal
# link[8:11] https://rclone.org/commands/rclone_copy/
rclone copy --disable-http2 storj:my-bucket/ ~/Downloads/storj-tree-2.png
rclone copy storj:my-bucket/ ~/Downloads/storj-tree-2.png
```

{% /tab %}
Expand Down

0 comments on commit 00db477

Please sign in to comment.