Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
61e3aec
add graph insights to table
seebi Nov 26, 2025
f24b95c
update reverse proxy configuration
sobo Nov 26, 2025
541b779
add GI to system architecture, revert to "traditional" architecture gfx.
rpietzsch Nov 26, 2025
869a0a2
Merge branch 'main' into feature/graphInsightsDocu-CMEM-7120
rpietzsch Nov 26, 2025
3870a4d
Merge remote-tracking branch 'origin/main' into feature/graphInsights…
rpietzsch Nov 27, 2025
15f589d
add graph insights documentation WIP
sobo Nov 27, 2025
96f5bf1
Add graph insight start + configuration WIP
sobo Nov 28, 2025
8fa3752
add graph insight oauth
sobo Nov 28, 2025
9afb345
update graph insights
sobo Nov 28, 2025
4029654
graph insights niceups
sobo Nov 28, 2025
d89ebec
add Graph Insights clients to default keycloak page
sobo Nov 28, 2025
58a1f6b
fix Graph Insights docu
sobo Nov 28, 2025
f86ee7f
add Graph Insights option to compose base installations
sobo Nov 28, 2025
59b17c7
add graph insights as optional in k8s deployment
sobo Nov 28, 2025
a99b23f
fix links, rework install start page, remove jar deployment
sobo Nov 28, 2025
8b8a81d
Fix typo in client types description
rpietzsch Dec 1, 2025
11f34a4
Fix typos in Keycloak client configuration
rpietzsch Dec 1, 2025
aa97f62
Fix spelling errors in Keycloak client descriptions
rpietzsch Dec 1, 2025
322d56e
Delete docs/deploy-and-configure/installation/scenario-k8s-deployment…
rpietzsch Dec 1, 2025
3dde300
Fix typo in Graph Insights license mention
rpietzsch Dec 1, 2025
c5f1321
Clarify Kubernetes deployment description
rpietzsch Dec 1, 2025
7dc72f3
add note on change of shui:valueQuery signature.
rpietzsch Nov 27, 2025
53165ac
add changes for XP v25.2.3
seebi Oct 8, 2025
93d7821
add changes for XP v25.2.5
seebi Oct 28, 2025
4049c1a
add eccenca Explore v25.2.6
rpietzsch Nov 27, 2025
44133fc
update linter issues and copy/paste issue.
rpietzsch Dec 1, 2025
66632e7
remove superfluous/duplice section
rpietzsch Dec 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 14 additions & 10 deletions docs/deploy-and-configure/configuration/reverse-proxy/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,28 +29,30 @@ apache configuration template
ServerAlias www.corporate-memory.example.com
ProxyPreserveHost On

ProxyPass /auth https://keycloak.host/auth retry=0
ProxyPassReverse /auth https://keycloak.host/auth

ProxyPass /dataplatform https://dataplatform.host/dataplatform retry=0
ProxyPassReverse /dataplatform https://dataplatform.host/dataplatform
ProxyPass /auth http://keycloak:8080/auth retry=0
ProxyPassReverse /auth http://keycloak:8080/auth

RewriteEngine on
RewriteRule "^/dataintegration$" "/dataintegration/" [R]

RewriteCond %{HTTP:Upgrade} =websocket [NC]
RewriteRule "/dataintegration/(.*)" wss://dataintegration.host/dataintegration/$1 [P,L]
RewriteRule "^/dataintegration/(.*)" ws://dataintegration/dataintegration/$1 [P,L]
RewriteCond %{HTTP:Upgrade} !=websocket [NC]
RewriteRule "/dataintegration/(.*)" https://dataintegration.host/dataintegration/$1 [P,L]
RewriteRule "^/dataintegration/(.*)" http://dataintegration:80/dataintegration/$1 [P,L]

ProxyPassReverse /dataintegration https://dataintegration.host/dataintegration
ProxyPassReverse /dataintegration http://dataintegration:80/dataintegration

ProxyPass / https://datamanager.host/ retry=0
ProxyPassReverse / https://datamanager.host/
ProxyPass /.well-known/acme-challenge !
ProxyPass / http://explore:80/ retry=0
ProxyPassReverse / http://explore:80

# https://github.com/gitlabhq/gitlabhq/issues/8924
AllowEncodedSlashes NoDecode

# Allow for compression
# https://httpd.apache.org/docs/2.4/mod/mod_deflate.html
SetOutputFilter DEFLATE

# Network timeout in seconds for proxied requests (default 300)
# http://serverfault.com/questions/500467/apache2-proxy-timeout/583266
ProxyTimeout 1200
Expand All @@ -72,6 +74,8 @@ Information about the runtime environment which is used to run Explore and Build

## Linked Data delivery mode

TODO: What is this section? Still relevant? Also rename to explore?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we still need this part?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove todo, leave unchanged


The Linked Data delivery mode is able to serve data that uses the same namespace as the configured domain name as resolvable URIs including content negotiation.

Therefore you can use the following template (e.g.: <https://corporate-memory.example.com>):
Expand Down