Skip to content

Commit 09d76e5

Browse files
author
Dominik Matic
committed
make paths make sense with shopware, add sentence making note of the bucket name for Hypernode Object Storage
1 parent 9735ad0 commit 09d76e5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/ecommerce-applications/shopware-6/how-to-configure-remote-storage-for-shopware-6-x.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Using remote object storage in Shopware 6 provides several benefits, including:
2121

2222
Configuring Shopware 6 to start storing files in your bucket is done by modifying the the general bundle configuration file located at `config/packages/shopware.yml` in your shopware root directory.
2323

24-
**Hypernode Object Storage and other S3 compatible providers**
24+
**Hypernode Object Storage**
2525

2626
If you're using Hypernode Object Storage, you need to make sure that the configuration file contains the following:
2727

@@ -75,10 +75,11 @@ shopware:
7575
You can use the following to sync the files between your local and remote storage:
7676

7777
```bash
78-
hypernode-object-storage objects sync pub/media/ s3://my_bucket_name/media/
79-
hypernode-object-storage objects sync var/import_export s3://my_bucket_name/import_export
78+
hypernode-object-storage objects sync public/media/ s3://bucket_name/media/
8079
```
8180

81+
In the case of Hypernode Object Storage, the bucket name will always be `main`.
82+
8283
The `hypernode-object-storage objects sync` command runs the sync process in the background
8384
and provides the Process ID (PID). You can monitor the sync progress using:
8485

@@ -89,8 +90,7 @@ hypernode-object-storage objects show PID
8990
Alternatively, you can use the AWS CLI directly:
9091

9192
```bash
92-
aws s3 sync pub/media/ s3://my_bucket_name/media/
93-
aws s3 sync var/import_export s3://my_bucket_name/import_export
93+
aws s3 sync public/media/ s3://bucket_name/media/
9494
```
9595

9696
## Serving assets from your S3 bucket

0 commit comments

Comments
 (0)