Temporal Web UI configuration reference
The Temporal Web UI Server uses a configuration file for many of the UI's settings.
An example development.yaml file can be found in the temporalio/ui-server repo.
Multiple configuration files can be created for configuring specific areas of the UI, such as Auth or TLS.
temporalGrpcAddress
The frontend address for the Temporal Cluster.
The default address is localhost (127.0.0.1:7233).
temporalGrpcAddress: default
port
The port used by the Temporal Web UI Server and any APIs.
port: 8080
publicPath
The path used by the Temporal Web UI Server and any APIs.
publicPath: ''
enableUi
Enables the browser UI.
This configuration can be set dynamically with the TEMPORAL_UI_ENABLED environment variable.
If disabled—that is, set to false
—the UI server APIs remain available.
enableUi: true
cloudUi
Enables the Cloud UI.
cloudUi: false
defaultNamespace
The default Namespace that the UI loads data for.
Defaults to default
.
defaultNamespace: default
feedbackUrl
The URL to direct users to when they click on the Feedback button in the UI. If not specified, it defaults to the UI's GitHub Issue page.
feedbackUrl: https://github.com/temporalio/ui/issues/new/choose
notifyOnNewVersion
When enabled—that is, when set to true
—a notification appears in the UI when a newer version of the Temporal Server is available.
notifyOnNewVersion: true
refreshInterval
How often the configuration UI Server reads the configuration file for new values. Currently, only tls configuration values are propagated during a refresh.
refreshInterval: 1m