Skip to content
DocsConfigurationPorts & TLS

Ports & TLS

Control which port the console listens on and how it serves TLS.

Changing the port after install

Re-run the installer with an explicit port:

change port
curl -fsSL https://devops-agent-public.s3.ap-south-1.amazonaws.com/install.sh | sudo LISTEN_ADDR=0.0.0.0:9000 bash

TLS modes

  • self-signed (default) — the installer generates a certificate so the console is HTTPS out of the box. Your browser warns once.
  • off — serves plain HTTP. Only use this behind a trusted reverse proxy that terminates TLS for you.

For a real certificate on the console's own domain, use Settings → Domain inside the app to issue a Let's Encrypt certificate.

Tip
Don't expose the console on a public IP without restricting access (security group / firewall to your own IP, or an SSH tunnel).