From 1fdfad40010f3022377caeb56128e915bc31fe94 Mon Sep 17 00:00:00 2001 From: ruslandoga Date: Thu, 5 Sep 2024 20:53:34 +0700 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4018d44..e261544 100644 --- a/README.md +++ b/README.md @@ -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 ```