Hey @CHBMB I'm having the same problem as this guy and trying to do the exact same thing with Heimdall but through letsencrypt as a reverse proxy but I'm a little behind maybe.
I have a domain hat I own eg. "mysite.com" and I've set it up to work over duckdns to connect to letsencrypt's docker front page. So that's done.
Now I want to setup Heimdall to work over reverse proxy, with security and I'm trying to follow these instructions on the github page: https://github.com/linuxserver/Heimdall#reverse-proxy
I haven't been able to get this working.
I'm trying to edit the file site-confs/default file in my letsencrypt docker. I'm not sure if this is the right one though as it seems to be in a different path than the one you both have. I don't have:
/config/letsencrypt/nginx/site-confs/ ---- inside the letsencrypt docker. Mine is:
/config/nginx/site-confs/
So /config/nginx/site-confs/default seems to be my config file.
I've got the Heimdall docker setup over port 443.
Letsencrypt docker running on port 81 for http and 444 for https.
I'm pretty sure portforwarding is set up correctly.
So I added the line inside the letsencrypt docker: /config/nginx/site-confs/default
# Heimdall
location /heimdall {
include /config/nginx/proxy.conf;
proxy_pass https://192.168.1.206:443/;
}
After restarting the docker I navigated to: https://mysite.com/heimdall
Input the username and password at the .htaccess prompt (this .htaccess comes from the Heimdall docker not the letsencrypt docker)
and none of the images or links on the Heimdall page work...
https://www.***mysite***.com/heimdall
My page looks like this, none of the images are loading. What's left to do?