Skip to content

Commit f0b2d09

Browse files
committed
Updated CMS secret name.
1 parent 133fc2f commit f0b2d09

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.env.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ASSETS_TEMP_ARTIFACTS_LOCATION=
1212

1313
CMS_APP_KEYS=
1414
CMS_API_TOKEN_SALT=
15-
CMS_ADMIN_JWT_TOKEN=
15+
CMS_ADMIN_JWT_SECRET=
1616
CMS_TRANSFER_TOKEN_SALT=
1717
CMS_JWT_SECRET=
1818

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ ASSETS_TEMP_ARTIFACTS_LOCATION=
3939
4040
CMS_APP_KEYS=
4141
CMS_API_TOKEN_SALT=
42-
CMS_ADMIN_JWT_TOKEN=
42+
CMS_ADMIN_JWT_SECRET=
4343
CMS_TRANSFER_TOKEN_SALT=
4444
CMS_JWT_SECRET=
4545
@@ -61,7 +61,7 @@ WEB_CMS_URL=
6161
| `ASSETS_TEMP_ARTIFACTS_LOCATION` | The absolute path in the host machine where the artifacts (for example, search exports) are located. | `/home/user/assets/artifacts` |
6262
| `CMS_APP_KEYS` | The app keys used by Strapi. You can make up these secrets yourself. | `"toBeModified1,toBeModified2"` |
6363
| `CMS_API_TOKEN_SALT` | The API token salt used by Strapi. You can make up this secret yourself. | `tobemodified` |
64-
| `CMS_ADMIN_JWT_TOKEN` | The admin JWT token used by Strapi. You can make up this secret yourself. | `tobemodified` |
64+
| `CMS_ADMIN_JWT_SECRET` | The admin JWT token used by Strapi. You can make up this secret yourself. | `tobemodified` |
6565
| `CMS_TRANSFER_TOKEN_SALT` | The transfer token salt used by Strapi. You can make up this secret yourself. | `tobemodified` |
6666
| `CMS_JWT_SECRET` | The JWT secret used by Strapi. You can make up this secret yourself. | `tobemodified` |
6767
| `WEB_PUBLIC_URL` | The public URL from which the web application is accessible from. | `https://starpepweb.com` |

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ services:
107107
TZ: ${TIMEZONE}
108108
APP_KEYS: ${CMS_APP_KEYS}
109109
API_TOKEN_SALT: ${CMS_API_TOKEN_SALT}
110-
ADMIN_JWT_TOKEN: ${CMS_ADMIN_JWT_TOKEN}
110+
ADMIN_JWT_SECRET: ${CMS_ADMIN_JWT_SECRET}
111111
TRANSFER_TOKEN_SALT: ${CMS_TRANSFER_TOKEN_SALT}
112112
JWT_SECRET: ${CMS_JWT_SECRET}
113113
DATABASE_CLIENT: sqlite

0 commit comments

Comments
 (0)