mirror of
https://github.com/dbeaver/cloudbeaver.git
synced 2026-04-25 13:46:02 +03:00
[GH-ISSUE #2086] Apache proxy configuration #618
Labels
No labels
AS
can't reproduce
can't reproduce
deployment
development
documentation
duplicate
duplicate
ee
enhancement
external
new driver
performance
pull-request
third party issue
wait for response
wait for review
wontfix
x:Oracle
x:cassandra
x:clickhouse
x:db2
x:duckdb
x:greenplum
x:h2
x:h2gis
x:hana
x:hive
x:intersystems
x:kyuubi
x:maria
x:mongo
x:mysql
x:postgresql
x:presto
x:sql server
x:sqlite
x:teradata
x:trino
xf:accessibility
xf:administration
xf:ai
xf:authentication
xf:aws
xf:commit-mode
xf:connection
xf:dark theme
xf:data editor
xf:datatransfer
xf:dba
xf:driver management
xf:erd
xf:filters
xf:i18n
xf:i18n
xf:installer
xf:json
xf:kerberos
xf:ldap
xf:local config
xf:log viewer
xf:metadata
xf:metadata editor
xf:navigator
xf:okta
xf:query manager
xf:resource manager
xf:scripts
xf:sql editor
xf:tasks
xf:ui/uix
xo: Firefox
xo:eclipse
xo:internet explorer
xo:macos
xp:major
xrn:internal
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/cloudbeaver#618
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @albenard on GitHub (Oct 25, 2023).
Original GitHub issue: https://github.com/dbeaver/cloudbeaver/issues/2086
Hi, in documentation i find information for nginx :
location / {
proxy_pass http://localhost:8978;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
I have installed docker and cloudbeaver and ran 'docker run ... -p8080:8978 ...' like in documentation and i can access http://myserver:8080 to work with cloudbeaver but in my production environment the 8080 port is not enable so i would like to use my apache server with an alias like http://myserver/cloudbeaver. I use configuration like
<Location /cloudbeaver>
ProxyPassReverse /
RequestHeader set X-Real-IP %{REMOTE_ADDR}s
RequestHeader set X-Forwarded-For %{HTTP:X-Forwarded-For}s
RequestHeader set Host %{HTTP_HOST}s
RequestHeader set Upgrade %{HTTP_UPGRADE}s
RequestHeader set Connection "Upgrade"
Order allow,deny
Allow from all
ProxyPass /cloudbeaver http://localhost:8080

ProxyPassReverse /cloudbeaver http://localhost:8080
And i have error message with http://192.16.20.140/cloudbeaver 👍
Have any body success configure an apache with proxy for access to cloudbeaver? Thanks or your help. I think this solution coul be in the documentation (if there is a solution).