Setting up SSL on Ubuntu
Set up secure connection to your UI Bakery on-prem instance
Install and configure Nginx
sudo apt update
sudo apt install nginxserver {
listen 80;
listen [::]:80;
index index.html index.htm index.nginx-debian.html;
server_name bakery.example.com;
client_max_body_size 50M;
location / {
proxy_pass http://localhost:3030;
}
}Option 1. Use Lets-Encrypt certificate
Install Certbot
Configure Certbot
Option 2. Use self-signed certificate
Create self signed certificate
Configure Nginx
Last updated
Was this helpful?