From bdf7da25cd8ca6733b5e8180ceda08d174df63fc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?E=CC=81ric=20Gaspar?=
<46165813+ericgaspar@users.noreply.github.com>
Date: Sat, 25 Nov 2023 19:25:03 +0100
Subject: [PATCH] Update ADMIN.md
---
doc/ADMIN.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/ADMIN.md b/doc/ADMIN.md
index 78a63d1..312012d 100644
--- a/doc/ADMIN.md
+++ b/doc/ADMIN.md
@@ -1,8 +1,8 @@
### Backend web path
-The request is transmitted as-is to the backend server. This usually means that the backend service shoudl be aware of the web path used to access the service. For example, if using the application is installed to `example.com/proxy`, your backend application should produce absolute links starting with `example.com/proxy/` too.
+The request is transmitted as-is to the backend server. This usually means that the backend service shoudl be aware of the web path used to access the service. For example, if using the application is installed to `__DOMAIN__/proxy`, your backend application should produce absolute links starting with `__DOMAIN__/proxy/` too.
-To support relative URLs from the backend, accessing the application via `http(s)://example.com/proxy` will permanent redirect (302) to `http(s)://example.com/proxy/` (trailing slash). Otherwise, a relative link like `` would try to load `http(s)://example.com/style.css` which would fail.
+To support relative URLs from the backend, accessing the application via `http(s)://__DOMAIN__/proxy` will permanent redirect (302) to `http(s)://__DOMAIN__/proxy/` (trailing slash). Otherwise, a relative link like `` would try to load `http(s)://__DOMAIN__/style.css` which would fail.
It is possible that your backend service does not support setting up a "base URL" (custom web path). In that case, you will have to install the application on a dedicated (sub)domain.