I have a NAS where I am running various web apps in docker containers through docker-compose. I want some of these web apps to be accessible through the internet, not only when I am connected to my home network.
The problem I'm currently facing is that while cloudflare is able to expose the default web apps (default NAS management 192.168.1.135:80
can be mapped to subdomain.domain.com
, for instance), it is unable to expose any docker container I try to run (192.168.1.135:4444
cannot be mapped to subdomain2.domain.com
), and I receive a 502 bad gateway error with every app I have tried so far.
The configuration shouldn't be the issue, and it's definitely not the NoTLSVerify
flag because the apps run on HTTP and I have configured it that way, so I am out of options to know what is going on and how to solve it.