Enable HTTPS on the Kestra UI with SSL/TLS certificates
For the complete documentation index, see llms.txt. For a full content snapshot, see llms-full.txt. Append.mdto anykestra.io/docs/*URL for plain Markdown.
Configure secure access to the Kestra UI via HTTPS. The right approach depends on your deployment type.
Using Caddy as a reverse proxy
Caddy is a reverse proxy that manages HTTPS automatically. For public domains it obtains and renews Let’s Encrypt certificates without any manual steps; for local development it generates a local CA and prompts once for system trust.
Local development (macOS)
This setup gives multiple local Kestra instances clean HTTPS URLs (e.g. https://oss, https://ee) with a single local CA prompt.
-
Install Caddy:
brew install caddy -
Create a
~/Caddyfilewith onereverse_proxyblock per Kestra instance (adjust ports to match your instances):oss {reverse_proxy localhost:8080}oss-dev {reverse_proxy localhost:8081}ee {reverse_proxy localhost:8082}ee-dev {reverse_proxy localhost:8083} -
Run Caddy:
sudo caddy run --config ~/CaddyfileCaddy generates a local CA on first run and prompts once to trust it in the macOS Keychain. After that, all configured hostnames are available over HTTPS with no browser warnings.
For the short hostnames (e.g. oss, ee) to resolve, add them to /etc/hosts:
127.0.0.1 oss oss-dev ee ee-devProduction (public domain)
For a publicly accessible Kestra instance, point your domain at the server and Caddy handles certificate issuance and renewal automatically via Let’s Encrypt.
kestra.yourdomain.com { reverse_proxy localhost:8080}Run Caddy as a background service so it persists across reboots:
sudo caddy start --config /etc/caddy/CaddyfileWith this setup, Kestra itself runs on plain HTTP internally (localhost:8080) and Caddy terminates TLS at the edge — no changes to Kestra’s Micronaut SSL configuration are needed.
Kestra uses WebSockets for real-time execution log streaming. Caddy’s reverse_proxy directive supports WebSocket upgrades by default, so no extra configuration is required.
Creating self-signed certificates
To get started in lower environments, create self-signed certificates using the OpenSSL library. For more detail on examining certificates and keys, see this Micronaut article.
While self-signed certificates encrypt traffic, they are considered unsuitable for production usage. They are deemed untrustworthy, as they do not come from a trusted Certificate Authority (CA) such as Let’s Encrypt. Follow your organization’s best practices when choosing a CA provider.
## Create a folder which will be later mounted to the kestra containermkdir -p /app/sslcd /app/ssl## Create CA in PEM format along with private keyopenssl req -x509 -sha256 -days 365 -newkey rsa:4096 \ -keyout cacert.key -out cacert.pem \ -subj '/CN=example.kestra.com/C=IE/O=kestra' \ -passout pass:changeit
## Create certificate signing requestopenssl req -newkey rsa:4096 \ -keyout server.key -out server.csr \ -subj '/CN=example.kestra.com/C=IE/O=kestra' \ -passout pass:changeit
## Create the server configuration which will be used to sign the certificatecat <<< 'authorityKeyIdentifier=keyid,issuerbasicConstraints=CA:FALSEsubjectAltName = @alt_names[alt_names]DNS.1 = localhost' > server.conf
## sign certificateopenssl x509 -req -CA cacert.pem -CAkey cacert.key \ -in server.csr -out server.pem -days 365 \ -CAcreateserial -extfile server.conf \ -passin pass:changeit
## Create server.p12openssl pkcs12 -export -out server.p12 -name "localhost" \ -inkey server.key -in server.pem \ -passin pass:changeit \ -passout pass:changeit
## Create keystore.p12 with JDK keytoolkeytool -importkeystore -srckeystore server.p12 \ -srcstoretype pkcs12 -destkeystore keystore.p12 \ -deststoretype pkcs12 \ -deststorepass changeit -srcstorepass changeit
## Create truststore.jkskeytool -import -trustcacerts -noprompt -alias ca \ -ext san=dns:localhost,ip:127.0.0.1 \ -file cacert.pem -keystore truststore.jks \ -storepass changeit -keypass changeitMicronaut SSL configuration
Configure HTTPS through the micronaut settings in the Observability and Networking configuration.
Ensure that you expose the secure port of the connection if different from the default port.
kestra: image: registry.kestra.io/docker/kestra:latest pull_policy: always user: "root" command: server standalone --worker-thread=128 volumes: - kestra-data:/app/storage - /var/run/docker.sock:/var/run/docker.sock - tmp-kestra:/tmp/kestra-wd - /app/ssl:/app/ssl ports: - "8443:8443" environment: KESTRA_CONFIGURATION: | micronaut: security: x509: enabled: false ssl: enabled: true server: ssl: port: 8443 enabled: true clientAuthentication: want keyStore: path: file:/app/ssl/server.p12 password: changeit type: PKCS12 trustStore: path: file:/app/ssl/truststore.jks password: changeit type: JKS datasources: postgres: url: jdbc:postgresql://postgres:5432/kestra driver-class-name: org.postgresql.Driver username: kestra password: k3str4 kestra: server: basic-auth: enabled: false username: "admin@kestra.io" # it must be a valid email address password: kestra repository: type: postgres storage: type: local local: base-path: "/app/storage" queue: type: postgres tasks: tmp-dir: path: /tmp/kestra-wd/tmp ports: - "8443:8443"Outbound SSL configuration
If Kestra tasks make outbound calls to services that require SSL, configure the JVM to trust your certificates by setting the following options in the JAVA_OPTS environment variable in your Observability and Networking configuration:
JAVA_OPTS: "-Djavax.net.ssl.trustStore=/app/ssl/truststore.jks -Djavax.net.ssl.trustStorePassword=changeit"The following example shows the full service configuration with JAVA_OPTS set:
kestra: image: registry.kestra.io/docker/kestra:latest pull_policy: always user: "root" command: server standalone --worker-thread=128 volumes: - kestra-data:/app/storage - /var/run/docker.sock:/var/run/docker.sock - tmp-kestra:/tmp/kestra-wd - /app/ssl:/app/ssl ports: - "8443:8443" environment: JAVA_OPTS: "-Djavax.net.ssl.trustStore=/app/ssl/truststore.jks -Djavax.net.ssl.trustStorePassword=changeit" KESTRA_CONFIGURATION: | micronaut: security: x509: enabled: false ssl: enabled: true server: ssl: port: 8443 enabled: true clientAuthentication: want keyStore: path: file:/app/ssl/server.p12 password: changeit type: PKCS12 trustStore: path: file:/app/ssl/truststore.jks password: changeit type: JKS datasources: postgres: url: jdbc:postgresql://postgres:5432/kestra driver-class-name: org.postgresql.Driver username: kestra password: k3str4 kestra: server: basic-auth: enabled: false username: "admin@kestra.io" # it must be a valid email address password: kestra repository: type: postgres storage: type: local local: base-path: "/app/storage" queue: type: postgres tasks: tmp-dir: path: /tmp/kestra-wd/tmp ports: - "8443:8443"CSRF protection
Cross-site request forgery (CSRF) is an attack where a malicious website tricks a signed-in user’s browser into sending requests to Kestra.
Kestra 2.0 ships CSRF protection enabled by default. It uses a double-submit token: the webserver sets a csrfToken cookie and injects the same value into the UI, which sends it back in the X-CSRF-TOKEN header on every state-changing request. The token is validated only when the request is authenticated by a session cookie (BASIC_AUTH or JWT). API and SDK clients that authenticate with an Authorization header are not affected, and GET, HEAD, and OPTIONS requests are never checked.
CSRF protection does not require TLS. The Secure flag on the token cookie follows the request scheme, so plain-HTTP deployments keep working. The token is signed with kestra.encryption.secret-key when one is configured.
To disable it, for example while debugging a reverse proxy setup, set:
micronaut: security: csrf: enabled: falseLeave CSRF protection enabled on any instance reachable from a browser. A token left by a previous Kestra instance on the same host is detected and renewed on page load, so it does not need to be cleared by hand.
Configuring SSL with Kubernetes
Kubernetes deployments support HTTPS via ingress-level TLS termination or via self-signed certificates at the application level.
Using ingress with TLS termination (recommended for production)
Most cloud providers expect TLS termination at the ingress controller. The following steps configure HTTPS using Let’s Encrypt certificates:
-
Install cert-manager. To use a different version, see available releases on GitHub:
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.17.1/cert-manager.yaml -
Create a Let’s Encrypt issuer (replace
your-email@example.com):apiVersion: cert-manager.io/v1kind: ClusterIssuermetadata:name: letsencrypt-prodspec:acme:server: https://acme-v02.api.letsencrypt.org/directoryemail: your-email@example.comprivateKeySecretRef:name: letsencrypt-prodsolvers:- http01:ingress:class: nginx # Update for your ingress controller -
Configure Ingress with TLS (Azure AKS example):
apiVersion: networking.k8s.io/v1kind: Ingressmetadata:name: kestra-ingressannotations:cert-manager.io/cluster-issuer: letsencrypt-prodnginx.ingress.kubernetes.io/backend-protocol: "HTTPS"spec:tls:- hosts:- kestra.yourdomain.comsecretName: kestra-tlsrules:- host: kestra.yourdomain.comhttp:paths:- path: /pathType: Prefixbackend:service:name: kestra-serviceport:number: 80
Using self-signed certificates (for testing)
-
Generate certificates using the OpenSSL commands in the Creating self-signed certificates section above.
-
Create TLS secret:
kubectl create secret tls kestra-tls \--cert=server.pem \--key=server.key -
Reference the secret in your Ingress:
spec:tls:- hosts:- kestra.yourdomain.comsecretName: kestra-tls
Application-level SSL configuration
For environments where ingress TLS termination isn’t available:
-
Create secret with SSL files:
kubectl create secret generic kestra-ssl \--from-file=keystore.p12 \--from-file=truststore.jks -
Configure Kestra deployment:
env:- name: KESTRA_CONFIGURATIONvalue: |micronaut:server:ssl:enabled: trueport: 8443keyStore:path: file:/app/ssl/keystore.p12password: changeittype: PKCS12volumeMounts:- name: ssl-secretmountPath: "/app/ssl"volumes:- name: ssl-secretsecret:secretName: kestra-ssl -
Expose HTTPS port in your service:
ports:- name: httpsport: 8443targetPort: 8443
Production deployments on cloud platforms such as Azure AKS typically require valid certificates from trusted CAs for SSO integration. Self-signed certificates may work for testing but aren’t suitable for production use.
Verifying the configuration
Certificate validity can be checked with:
kubectl get certificate kestra-tls -wExpected output:
NAME READY SECRET AGEkestra-tls True kestra-tls 5mFor a step-by-step guide to adding a self-signed or internal CA to the JVM truststore in a Kubernetes deployment, see Trusting a custom CA for outbound connections on Kubernetes.
Was this page helpful?