-
Notifications
You must be signed in to change notification settings - Fork 407
CloudBeaver and Nginx
CloudBeaver works out of the box but uses plain HTTP, processes static content via Jetty. Adding a web server like Nginx improves security, performance, and scalability.
The Enterprise Edition provides pre-configured Nginx for seamless integration. Community Edition users can manually configure Nginx to enhance functionality.
Note: When deploying CloudBeaver AWS, the setup uses the same pre-configured Nginx settings as the Enterprise Edition.
In the Community Edition, you can configure Nginx manually to set up a web server in front of CloudBeaver.
Tip: If you prefer, you can configure HTTPS directly for the Jetty server. For details, see Jetty configuration.
-
Install Nginx on your server.
Refer to the official Nginx documentation.
-
Add a proxy configuration:
- Open the main Nginx configuration file in a text editor.
- In your Nginx configuration file inside the
http
section, add the following:
server { listen 80; server_name _; client_max_body_size 500M; location / { proxy_pass http://127.0.0.1:8978; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } }
To ensure the client’s real IP address is forwarded when using Nginx, add the
forwardProxy:true
parameter to your server configuration. -
Apply the changes:
- Reload the Nginx configuration.
- Open CloudBeaver in your browser using
http://127.0.0.1
.
- Application overview
-
License Management
- Demo Server
- Supported databases
- Administration
- Server configuration
- Create Connection
- Network configuration settings
- Connection Templates Management
- Access Management
-
Authentication methods
-
Local Access Authentication
- Anonymous Access Configuration
- Reverse proxy header authentication
- LDAP
-
Single Sign On
-
SAML
-
OpenID
-
AWS OpenID
-
AWS SAML
-
AWS IAM
-
AWS OpenId via Okta
-
Snowflake SSO
-
Okta OpenId
-
Cognito OpenId
-
JWT authentication
-
Kerberos authentication
-
NTLM
-
Microsoft Entra ID authentication
-
Google authentication
-
Local Access Authentication
- User credentials storage
- Cloud databases configuration
-
Query Manager
-
Drivers Management
- Accessibility
- Keyboard shortcuts
- Features
- Server configuration
-
Domain manager
- Product configuration parameters
- Command line parameters
- Local Preferences
- API
- Deployment options
- Additional setup and management