Skip to content
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 contributing/development-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions help/faqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description: A running list of frequently ask questions and their answers.

<summary>I get a warning on container start up that the <code>APP_KEY</code> is missing</summary>

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.

</details>

Expand Down Expand Up @@ -56,8 +56,6 @@ Starting your cron schedule at an off-peak minute can help reduce network conges

</details>



### Other

<details>
Expand Down
3 changes: 1 addition & 2 deletions security/encryption.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
```