Skip to content

Commit 7f9ee18

Browse files
authored
Merge pull request alexjustesen#69 from svenvg93/main
Remove site links
2 parents aa4e727 + 1d39f43 commit 7f9ee18

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

contributing/development-environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ APP_TIMEZONE=UTC
4646
```
4747

4848
{% hint style="info" %}
49-
Generate the APP\_KEY at https://speedtest-tracker.dev
49+
Generate the APP\_KEY at with the command; `echo -n 'base64:'; openssl rand -base64 32;`
5050
{% endhint %}
5151

5252
#### 3. Install Composer dependencies

help/faqs.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: A running list of frequently ask questions and their answers.
1010

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

13-
You can generate a key here: [https://speedtest-tracker.dev](https://speedtest-tracker.dev).
13+
You need a `APP_KEY` for the encryption. See the [installation docs](../getting-started/installation/) how to generate one.
1414

1515
</details>
1616

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

5757
</details>
5858

59-
60-
6159
### Other
6260

6361
<details>

security/encryption.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44

55
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.
66

7-
You can either get a generated key on [https://speedtest-tracker.dev/](https://speedtest-tracker.dev/) or run the command below:
7+
Run the command below to generate your `APP_KEY`.
88

99
```bash
1010
echo -n 'base64:'; openssl rand -base64 32;
1111
```
12-

0 commit comments

Comments
 (0)