docs: integration report, Confluence context-path note, approved origin with /main

This commit is contained in:
Artur Mukhamadiev 2026-09-14 22:26:13 +03:00
parent d77b52ae86
commit 2dd2323f79
2 changed files with 8 additions and 3 deletions

View File

@ -52,8 +52,12 @@ make run # scripts/run-backend.sh deploy/confluence-web.env
The backend binds `127.0.0.1:8000` by default and serves the UI at The backend binds `127.0.0.1:8000` by default and serves the UI at
`http://127.0.0.1:8000/`. Open it in a browser, click the key icon, enter the `http://127.0.0.1:8000/`. Open it in a browser, click the key icon, enter the
Confluence base URL and your personal access token (PAT), test the connection, Confluence base URL **including its context path** (for example
then ask a question. Credentials live only in browser memory and in the backend `https://collab.lge.com/main`, which must match an approved origin), your
personal access token (PAT), test the connection, then ask a question. On
instances that allow anonymous REST reads, "Test connection" proves the
destination is reachable but cannot prove the PAT is valid; a wrong token then
shows up as denied or missing pages. Credentials live only in browser memory and in the backend
for the duration of a request; a page reload clears them. for the duration of a request; a page reload clears them.
Version 1 is a single-user deployment: one backend worker, one query at a time Version 1 is a single-user deployment: one backend worker, one query at a time

View File

@ -5,7 +5,8 @@
# --- Confluence (read-only, user PAT is supplied in the browser at query time) --- # --- Confluence (read-only, user PAT is supplied in the browser at query time) ---
# Approved base origins (comma separated, include context path if any). # Approved base origins (comma separated, include context path if any).
CONFLUENCE_WEB_APPROVED_ORIGINS=https://collab.lge.com # Include the Confluence context path (collab.lge.com serves REST under /main).
CONFLUENCE_WEB_APPROVED_ORIGINS=https://collab.lge.com/main
# Optional outbound proxy for Confluence only (socks5://, socks5h://, http://, https://). # Optional outbound proxy for Confluence only (socks5://, socks5h://, http://, https://).
CONFLUENCE_WEB_CONFLUENCE_PROXY=socks5://127.0.0.1:1560 CONFLUENCE_WEB_CONFLUENCE_PROXY=socks5://127.0.0.1:1560
# Optional corporate CA bundle (PEM). Leave unset to use the system trust store. # Optional corporate CA bundle (PEM). Leave unset to use the system trust store.