@@ -66,15 +66,15 @@ This will generate ``config/secrets/prod/prod.encrypt.public.php`` and
6666Create or Update Secrets
6767------------------------
6868
69- Suppose you want to store your database password a secret. By using the
69+ Suppose you want to store your database password as a secret. By using the
7070``secrets:set `` command, you should add this secret to both the ``dev `` *and *
7171``prod `` vaults:
7272
7373.. code-block :: terminal
7474
75- # the input is hidden as you type for security
75+ # the input is hidden as you type for security reasons
7676
77- # set your a default development value (can be overridden locally)
77+ # set your default development value (can be overridden locally)
7878 $ php bin/console secrets:set DATABASE_PASSWORD
7979
8080 # set your production value
@@ -102,7 +102,7 @@ Secret values can be referenced in the same way as
102102accidentally define a secret *and * an environment variable with the same name:
103103**environment variables override secrets **.
104104
105- If you stored a ``DATABASE_PASSWORD `` secret, you can reference by:
105+ If you stored a ``DATABASE_PASSWORD `` secret, you can reference it by:
106106
107107.. configuration-block ::
108108
@@ -234,7 +234,7 @@ manually store this file somewhere and deploy it. There are 2 ways to do that:
2342341) Uploading the file:
235235
236236The first option is to copy the **production decryption key ** -
237- ``config/secrets/prod/prod.decrypt.private.php `` to your server(s) .
237+ ``config/secrets/prod/prod.decrypt.private.php `` to your server.
238238
2392392) Using an Environment Variable
240240
@@ -256,7 +256,7 @@ your secrets during deployment to the "local" vault:
256256 $ php bin/console secrets:decrypt-to-local --force --env=prod
257257
258258 This will write all the decrypted secrets into the ``.env.prod.local `` file.
259- After doing this, the decryption key does *not * need to remain on the server.
259+ After doing this, the decryption key does *not * need to remain on the server(s) .
260260
261261Rotating Secrets
262262----------------
0 commit comments