-
Notifications
You must be signed in to change notification settings - Fork 504
CloudBeaver SSL certificate configuration
dbeaver-devops edited this page May 29, 2025
·
7 revisions
The instance contains an Nginx proxy server, the configuration of which is located at path /etc/nginx/conf.d/cloudbeaver.conf
To set up a connection via HTTPS with domain:
- You need to create or buy a valid TLS certificate for your domain endpoint.
- After you get SSL certificate for your domain you must put it to
/etc/nginx/ssl/fullchain.pemas certificate and/etc/nginx/ssl/privkey.pemas a private key. - Change
server_name _;in configuration/etc/nginx/conf.d/cloudbeaver.conftoserver_name <your-domain>; - Enter in terminal
sudo systemctl reload nginx.serviceto reload Nginx proxy - Now you can open your
CloudBeaver Serverfrom the browser using your domain address.
Tip: If you need to change Java security properties, for example, to enable TLS 1.0, see how to change Java security properties for details.
Self-signed certificates are considered insecure for the Internet. Firefox will treat the site as having an invalid certificate, while Chrome will act as if the connection was plain HTTP
You can create self-signed certificate for <your-domain> by running the following script in the terminal:
SECRET_CERT_CSR="/C=US/ST=NY/L=NYC/O=CloudBeaver /OU=IT Department/CN=<your-domain>"
cd /etc/nginx/
mkdir ssl
cd ssl
sudo openssl req -x509 -sha256 -nodes -days 36500 -subj "$SECRET_CERT_CSR" -newkey rsa:2048 -keyout privkey.pem -out fullchain.pem
- Getting started
- Create connection
- Connection network options
- Supported databases
-
Drivers management
- Database authentication methods
- Database navigator
- Properties editor
- Data editor
- SQL editor
-
Entity relation diagrams
- Cloud services
-
AI Smart assistance
- Data transfer
- General user guide
- Administration
- Server configuration
-
Server security and access configuration
- Authentication methods
- Access management
- Proxy configuration
-
Secret management
- Logs
-
Query manager
- Workspace location
- Command line parameters
-
Session manager
- Deployment options
- CloudBeaver Editions
- FAQ
- Development