Hi,
I have a spring boot/ platform run version 7.16 of Camunda that I’m struggling to setup w/ an NGINX reverse proxy.
Here’s my NGINX configuration as a reverse proxy for Camunda:
upstream sieve-tm {
zone sieve-tm 64K;
server sieve-tm:8080 max_fails=1 fail_timeout=2s;
keepalive 2;
}
server {
# NGINX-CAMUNDA proxy access log
access_log /var/log/nginx/camunda-access.log tm_log;
error_log /var/log/nginx/tm_error.log;
# NGINX-CAMUNDA SSL port listen (ipv4 and ipv6)
listen 8080 ssl http2;
listen [::]:8080 ssl http2;
keepalive_timeout 70s; # indicates how long the server has to wait to get requests from a client. It indicates the number of seconds an idle keepalive connection will stay open.
#ssl_handshake_timeout 10s;
location / {
proxy_pass http://sieve-tm;
}
}
However when I try to access the Camunda app using https://localhost:8080 (I have SSL setup for NGINX) I always end up having an ERR_CONNECTION_REFUSED
.
Does anybody have an idea what I can possibly be missing? I am running a docker environment.
Also whenever I try to access Camunda using an exposed port (not going through NGINX) it works just fine.
Thank you!