Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit e923b35

Browse files
committed
clarify the file types, clean links
1 parent a3359c8 commit e923b35

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

src/guides/v2.4/config-guide/remote-storage/config-remote-storage.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ functional_areas:
77
- Setup
88
---
99

10-
The Remote Storage module provides the option to store media files and schedule imports/exports in a persistent, remote storage container using a storage service, such as AWS S3 or Azure Blob Storage. By default, Magento stores media files in the same filesystem that contains the application. This is not efficient for complex, multi-server configurations, which can result in degraded performance when sharing resources. With this module, you can store `pub/media` files and import and export-related `var` files in remote object storage and take advantage of server-side image resizing.
10+
The Remote Storage module provides the option to store media files and schedule imports/exports in a persistent, remote storage container using a storage service, such as AWS S3 or Azure Blob Storage. By default, Magento stores media files in the same filesystem that contains the application. This is not efficient for complex, multi-server configurations, which can result in degraded performance when sharing resources. With this module, you can store media files in the `pub/media` directory and import/export files in the `var` directory in the remote object storage and take advantage of server-side image resizing.
1111

1212
![schema image]
1313

1414
## Remote storage options
1515

16-
You can configure remote storage using the `remote-storage` option with the `setup` CLI command. The `remote-storage` option uses the following syntax:
16+
You can configure remote storage using the `remote-storage` option with the [`setup` CLI command][setup]. The `remote-storage` option uses the following syntax:
1717

1818
```text
1919
--remote-storage-<parameter-name>="<parameter-value>"
@@ -32,13 +32,13 @@ The `parameter-name` refers to the specific remote storage parameter name. The f
3232

3333
### Storage adapters
3434

35-
The default storage location is the local filesystem. A _storage adapter_ allows you to connect to a storage service and store your files anywhere. Magento supports configuring the following storage services:
35+
The default storage location is the local filesystem. A _storage adapter_ enables you to connect to a storage service and store your files anywhere. Magento supports configuring the following storage services:
3636

3737
- [Amazon Simple Storage Service (Amazon S3)][AWS S3]
3838

3939
## Enable remote storage
4040

41-
You can install remote storage during a new Magento installation or add it to an existing Magento instance using `remote-storage` parameter name-and-value pairs with `setup` CLI commands. Minimally, you must supply the storage driver, bucket, and region.
41+
You can install remote storage during a new Magento installation or add it to an existing Magento instance using `remote-storage` parameter name-and-value pairs with `setup` CLI commands. Minimally, you must supply the storage `driver`, `bucket`, and `region`.
4242

4343
The following examples enable the remote storage with an AWS S3 storage adapter in the US:
4444

@@ -56,16 +56,19 @@ The following examples enable the remote storage with an AWS S3 storage adapter
5656

5757
## Migrate content
5858

59-
After you enable remote storage for a specific adapter, you can use the CLI to migrate existing media files to the remote storage.
59+
After you enable remote storage for a specific adapter, you can use the CLI to migrate existing _media_ files to the remote storage.
6060

6161
```bash
6262
./magento2ce/bin/magento remote-storage:sync
6363
```
6464

65-
This functionality only migrates files in the `pub/media` directory, _not_ the import and export-related files in the `var` directory.
65+
{:.bs-callout-info}
66+
The sync command only migrates files in the `pub/media` directory, _not_ the import/export files in the `var` directory. See [Scheduled Import/Export][import-export] in the _Magento 2.4 User Guide_.
6667

6768
<!-- link definitions -->
68-
[AWS S3]: {{page.baseurl}}/config-guide/remote-storage/config-remote-storage-aws-s3.html
69+
[AWS S3]: {{site.baseurl}}/guides/v2.4/config-guide/remote-storage/config-remote-storage-aws-s3.html
70+
[import-export]: https://docs.magento.com/user-guide/system/data-scheduled-import-export.html
6971
[nginx-module]: http://nginx.org/en/docs/http/ngx_http_image_filter_module.html
7072
[schema image]: {{site.baseurl}}/common/images/config-remote-storage-schema.png
7173
{:width="500px"}
74+
[setup]: {{site.baseurl}}/guides/v2.4/install-gde/install/cli/install-cli-subcommands-deployment.html#instgde-cli-subcommands-configphp

0 commit comments

Comments
 (0)