diff --git a/contributing/development-environment.md b/contributing/development-environment.md index 42f8cda..c4cbba8 100644 --- a/contributing/development-environment.md +++ b/contributing/development-environment.md @@ -46,7 +46,7 @@ APP_TIMEZONE=UTC ``` {% hint style="info" %} -Generate the APP\_KEY at https://speedtest-tracker.dev +Generate the APP\_KEY at with the command; `echo -n 'base64:'; openssl rand -base64 32;` {% endhint %} #### 3. Install Composer dependencies diff --git a/help/faqs.md b/help/faqs.md index 98c8ed8..32aa0ea 100644 --- a/help/faqs.md +++ b/help/faqs.md @@ -10,7 +10,7 @@ description: A running list of frequently ask questions and their answers. I get a warning on container start up that the APP_KEY is missing -You can generate a key here: [https://speedtest-tracker.dev](https://speedtest-tracker.dev). +You need a `APP_KEY` for the encryption. See the [installation docs](../getting-started/installation/) how to generate one. @@ -56,8 +56,6 @@ Starting your cron schedule at an off-peak minute can help reduce network conges - - ### Other
diff --git a/security/encryption.md b/security/encryption.md index 99efd47..3132152 100644 --- a/security/encryption.md +++ b/security/encryption.md @@ -4,9 +4,8 @@ An application key (`APP_KEY`) is used for encryption. It is a base64 encoded string that is used by Speedtest Tracker to encrypt and decrypt data, such as user sessions and other sensitive information and is required as part of the setup process. -You can either get a generated key on [https://speedtest-tracker.dev/](https://speedtest-tracker.dev/) or run the command below: +Run the command below to generate your `APP_KEY`. ```bash echo -n 'base64:'; openssl rand -base64 32; ``` -