Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Fix typos #1379

Merged
merged 1 commit into from
Apr 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/backends/s3_compatible/backblaze-B2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Backblaze B2 implements an `S3 Compatible API <https://www.backblaze.com/b2/docs
#. Sign up for a `Backblaze B2 account <https://www.backblaze.com/b2/sign-up.html?referrer=nopref>`_, if you have not already done so.
#. Create a public or private bucket. Note that object-level ACLs are not supported by B2 - all objects inherit their bucket's ACLs.
#. Create an `application key <https://www.backblaze.com/b2/docs/application_keys.html>`_. Best practice is to limit access to the bucket you just created.
#. Follow the instructions in the :doc:`Amazon S3 docs <amazon-S3>` with the following exceptions:
#. Follow the instructions in the :doc:`Amazon S3 docs <../amazon-S3>` with the following exceptions:

* Set ``region_name`` to your Backblaze B2 region, for example, ``us-west-004``
* Set ``endpoint_url`` to ``https://s3.${AWS_S3_REGION_NAME}.backblazeb2.com``
Expand Down
2 changes: 1 addition & 1 deletion docs/backends/s3_compatible/digital-ocean-spaces.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Digital Ocean
=============

Digital Ocean Spaces implements the S3 protocol. To use it follow the instructions in the :doc:`Amazon S3 docs <amazon-S3>` with the important caveats that you must:
Digital Ocean Spaces implements the S3 protocol. To use it follow the instructions in the :doc:`Amazon S3 docs <../amazon-S3>` with the important caveats that you must:

- Set ``region_name`` to your Digital Ocean region (such as ``nyc3`` or ``sfo2``)
- Set ``endpoint_url`` to the value of ``https://${region_name}.digitaloceanspaces.com``
Expand Down
21 changes: 11 additions & 10 deletions docs/backends/s3_compatible/oracle-cloud.rst
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
Oracle Cloud
=============

Oracle cloud provides S3 compatible object storage. To use it follow the instructions in the :doc:`Amazon S3 docs <amazon-S3>` on how to configure *DEFAULT_FILE_STORAGE* and *STATICFILES_STORAGE* and set the following
configurations on settings.py
Oracle Cloud provides an S3 compatible object storage. To use it: the instructions in the :doc:`Amazon S3 docs <../amazon-S3>` replacing:

- Create a `Customer Secret Key`_
- Use generated key as ``secret_key``
- And the value in the *Access Key* column as ``access_key``
- Set ``bucket_name`` with your bucket name
- Set ``region_name`` with the current region
#. Create a `Customer Secret Key`_
#. Create a bucket

And last but most importantly set the ``endpoint_url`` with:
Then follow the instructions in the :doc:`Amazon S3 docs <../amazon-S3>` documentation replacing:

``https://{ORACLE_NAMESPACE}.compat.objectstorage.{ORACLE_REGION}.oraclecloud.com``
- ``secret_key`` with the value previously generated
- ``access_key`` with the value in the **Access Key** column
- ``bucket_name`` with the bucket name
- ``region_name`` with the current region
- ``endpoint_url`` with ``https://{ORACLE_NAMESPACE}.compat.objectstorage.{ORACLE_REGION}.oraclecloud.com``

The ``ORACLE_NAMESPACE`` value can be found on the bucket details page
.. note::
The ``ORACLE_NAMESPACE`` value can be found on the bucket details page


References
Expand Down
Loading