How to connect to zeebe if i have enabled ingress for it?

Hello,

I have enabled ingress in my local setup for the camunda and i am able to access operate and tasklist at http://hostname/operate. But i am very new to nginx and i tried to deploy job to zeebe gateway but i am not able to how to do this ?

I have configured my camunda install like this -
global:
identity:
auth:
enabled: false
ingress:
enabled: true
className: nginx
host: “hostname”

identity:
enabled: false

identityKeycloak:
enabled: false

optimize:
enabled: false

tasklist:
contextPath: “/tasklist”

operate:
contextPath: “/operate”

connectors:
enabled: false
inbound:
mode: disabled

zeebe:
debug: true
logLevel: debug
configuration: |-
zeebe:
broker:
exporters:
elasticsearch:
className: “io.camunda.zeebe.exporter.ElasticsearchExporter”
args:
authentication:
username: elastic
debuglog:
className: io.camunda.zeebe.broker.exporter.debug.DebugLogExporter
args:
logLevel: debug
prettyPrint: true
gateway:
enable: true
network:
port: 26500
security:
enabled: false
authentication:
mode: none
threads:
managementThreads: 2
network:
host: 0.0.0.0
commandApi:
port: 26501
internalApi:
port: 26502
monitoringApi:
port: “9600”
cluster:
clusterSize: 3
partitionsCount: 3
replicationFactor: 3
clusterName: camunda-zeebe
threads:
cpuThreadCount: 3
ioThreadCount: 3
backpressure:
enabled: true
useWindowed: true
algorithm: aimd
aimd:
requestTimeout: 200ms
initialLimit: 100
minLimit: 1
maxLimit: 1000
backoffRatio: 0.9

zeebeGateway:
replicas: 2
ingress:
grpc:
enabled: true
className: nginx
host: “zeebe.hostname”

Any help would be appreciated also can i even use ingress while using an embedded agteway?