Update README.md

This commit is contained in:
ruslandoga 2024-09-05 20:53:34 +07:00 committed by GitHub
parent 300a8ddce9
commit 1fdfad4001
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,15 +34,15 @@ To set up Plausible CE quickly, follow these steps:
```console
$ touch .env
$ echo "HTTP_PORT=8080" >> .env
$ echo "HTTPS_PORT=8443" >> .env
$ echo "BASE_URL=https://plausible.example.com:8443" >> .env
$ echo "HTTP_PORT=80" >> .env
$ echo "HTTPS_PORT=443" >> .env
$ echo "BASE_URL=https://plausible.example.com" >> .env
$ echo "SECRET_KEY_BASE=$(openssl rand -base64 48)" >> .env
$ cat .env
HTTP_PORT=8080
HTTPS_PORT=8443
BASE_URL=https://plausible.example.com:8443
HTTP_PORT=80
HTTPS_PORT=443
BASE_URL=https://plausible.example.com
SECRET_KEY_BASE=As0fZsJlUpuFYSthRjT5Yflg/NlxkFKPRro72xMLXF8yInZ60s6xGGXYVqml+XN1
```