for Camunda8 Self managed SetUp, i folllowed the steps that mentioned in → GitHub - camunda/camunda-platform: Links to Camunda Platform 8 resources, releases, and local development config
i deployed camunda8 application remotely in linux box and for accesing application from my local created proxies as below,
Operate: http://localhost:8081 → operate.XXX.XXXX.com
Tasklist: http://localhost:8082 → taklist.XXX.XXXX.com
Optimize: http://localhost:8083 → optimize.XXX.XXXX.com
Identity: http://localhost:8084 → identity.XXX.XXXX.com
Elasticsearch: http://localhost:9200 → earch.XXX.XXXX.com
http://localhost:18080/auth/ → keycloak.XXX.XXXX.com
but still getting routing/running issues,
can i have any valid docker-compose.yaml, docker-compose-core.yaml and any more settings i need to do with respect to keycloak/optimize etc…?
i can’t use this(127.0.0.1:26500) as my camunda app deployed remotely.
below code is not working for my client
ZeebeClient client = ZeebeClient.newClientBuilder()
.gatewayAddress(“zeebe.XXX.XXX.com:26500”)
.usePlaintext()
.build();