Replies: 2 comments 8 replies
-
What are you trying to achieve? Run a HTTPS Listener (which is possible in Mirth but only with commercial plugins)? We're using traefik (as docker container) wich redirects HTTP to HTTPS and enables Mirth being a HTTPS server. A HTTPS Sender destination works out of the box and even if you need to do a HTTP request using code (not destination sender) you could ignore SSL certificates and completely bypass the whole SSL part. |
Beta Was this translation helpful? Give feedback.
-
Hi @scheiblr, not sure if this helps you in any way. Until there is support of talking to Mirth using port 80 without unnecessary redirects or without code modifications (if ever), you can simply forward all traffic to port 8443 or port 443 in case you remapped it in your respective kubernetes service as I did. All you need to do in your reverse proxy is to force HTTPS protocol in your proxypass call. I.e. this nginx ingress example works fine for me and will work also for you, assuming you would have ingress and postgres in your cluster:
Please note the line |
Beta Was this translation helpful? Give feedback.
-
Hey guys,
first of all thanks for distributing the code for the tool and offering a docker image.
Today I started to touch the docker image, too and tried to incorporate it as a component into my software stack.
After some tries and research I ended up on this page. I wondered if in meantime, there is the possibility to switch off the java ssl feature in order to realize ssl by a sometimes more convenient reverse proxy method. I'm also using an nginx and am trying to realize the reverse proxy. Unfortunately, it won't function without issues.
Kind regards,
Raphael
Beta Was this translation helpful? Give feedback.
All reactions