From d8c1e3581989080b589ee708fbbd8e28ce7ee1b0 Mon Sep 17 00:00:00 2001
From: Tilman Vatteroth <git@tilmanvatteroth.de>
Date: Sun, 16 Apr 2023 18:36:04 +0200
Subject: [PATCH] docs(docs): make clear that the s3 endpoint must be a URL

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
---
 docs/content/config/media/s3.md | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/docs/content/config/media/s3.md b/docs/content/config/media/s3.md
index 7918516b6..6c67ccb91 100644
--- a/docs/content/config/media/s3.md
+++ b/docs/content/config/media/s3.md
@@ -14,6 +14,8 @@ HD_MEDIA_BACKEND_S3_BUCKET="<BUCKET>"
 HD_MEDIA_BACKEND_S3_ENDPOINT="<ENDPOINT>"
 ```
 
-If you use Amazon S3, `<ENDPOINT>` should contain your [Amazon Region](https://docs.aws.amazon.com/general/latest/gr/s3.html).
+`<ENDPOINT>` should be an URL and contain the protocol, the domain and if necessary the port.
+For example: `https://s3.example.org` or `http://s3.example.org:9000`
 
-For example: If your Amazon Region is `us-east-2`, your endpoint `<ENDPOINT>` should be `s3.us-east-2.amazonaws.com`.
+If you use Amazon S3, `<ENDPOINT>` should contain your [Amazon Region](https://docs.aws.amazon.com/general/latest/gr/s3.html).
+For example: If your Amazon Region is `us-east-2`, your endpoint `<ENDPOINT>` should be `https://s3.us-east-2.amazonaws.com`.