How to add temporal web to temporalio / customization-samples

Hi All,

I want to add temporal web to below customization sample as below .

temporal-web:
image: temporalio/web:latest
ports:
- “8088:8088”
stdin_open: true
tty: true
volumes:
- ${TEMPORAL_LOCAL_CERT_DIR}:${TEMPORAL_TLS_CERTS_DIR}
environment:
- “TEMPORAL_CLI_ADDRESS=temporal:7233”
- “TEMPORAL_CLI_TLS_CA=${TEMPORAL_TLS_CERTS_DIR}/cluster/ca/server-intermediate-ca.pem”
- “TEMPORAL_CLI_TLS_CERT=${TEMPORAL_TLS_CERTS_DIR}/cluster/internode/cluster-internode.pem”
- “TEMPORAL_CLI_TLS_KEY=${TEMPORAL_TLS_CERTS_DIR}/cluster/internode/cluster-internode.key”
- “TEMPORAL_CLI_TLS_ENABLE_HOST_VERIFICATION=true”
- “TEMPORAL_CLI_TLS_SERVER_NAME=internode.cluster-x.contoso.com
depends_on:
- temporal

when i am trying to run i am getting error . Can you please help on this . How to we add temporal web when we add mtls for worker and tctl .

Thanks
phani

1 Like

hey @phani , this is great!

would you mind opening a draft PR against https://github.com/temporalio/samples-server (moved here)? I’ll help to finish the PR

i’ve created samples on how to start up Web UI with mTLS enabled Add Web UI mTLS samples by feedmeapples · Pull Request #16 · temporalio/samples-server · GitHub