@berichta did you see this?
Hi Berichta and David,
I made the adjustments as you both pointed out and have evolved my config and Caddyfile, as below:
http:
http:
# Uncomment this to add a password (recommended!)
# api_password: !secret http_password
# ssl_certificate: /ssl/fullchain.pem
# ssl_key: /ssl/privkey.pem
use_x_forwarded_for: true
trusted_proxies:
- 127.0.0.1
- ::1
ip_ban_enabled: True
login_attempts_threshold: 5
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
base_url: <my-domain>.duckdns.org
Caddyfile:
{
email <my-email>@email.com
}
(common) {
tls {
dns duckdns {env.DUCKDNS_TOKEN}
on_demand
}
header {
Strict-Transport-Security "max-age=31536000; includeSubdomains"
X-XSS-Protection "1; mode=block"
X-Content-Type-Options "nosniff"
Referrer-Policy "same-origin"
X-Frame-Options "ALLOW-FROM <my-domain>.duckdns.org"
-Server
Content-Security-Policy "frame-ancestors domain.com *.domain.com"
Permissions-Policy "geolocation=(self domain.com *.domain.com), microphone=()"
}
}
<my-domain(without the https://)>.duckdns.org {
import common
reverse_proxy localhost:8123 {
}
}
<subdomain>.<my-domain>.duckdns.org {
import common
reverse_proxy localhost:8581 {
}
}
<subdomain>.<my-domain>.duckdns.org {
import common
reverse_proxy <IP_Address>:443 {
}
}
I can now access the door-knock on HA with the splash screen and the retry, but a retry goes to:
Safari cannot open the page.
The error was: "FETCHEVENT.respondWith received an error: no-response: no-response :: [{"url":"<my-domain>.duckdns.org/lovelace","error":{}}]".
Oh, so close!!
I also started to build out multiple subdomains and have those listed above, specifically the Caddyfile - Iām not so sure about my most recent updates in line with your discussions from earlier in this thread?
Thank you for looking at these.
Ok so first you donāt need the X-Frame-Optionsā¦ The Content-Security-Policy covers that off. Also see the post directly above yours. That permissions policy doesnāt work for me - I get console errors in chrome so I changed it to
Permissions-Policy "geolocation=(self) , microphone=()"
With the base_url, I use the setting in Configuration>General like this:
and in configuration.yaml only this for http
http:
# ssl_certificate: /ssl/fullchain.pem
# ssl_key: /ssl/privkey.pem
use_x_forwarded_for: true
trusted_proxies:
- 127.0.0.1
- ::1
ip_ban_enabled: true
login_attempts_threshold: 5
Yes you are really close!
Misses that bit but Iām sure you cant proxy to 443 when you are connecting on 443 as well (same as the 8123 issue from yesterday.) I could be wrong about that of course lol.
How would I point to a nextcloud instance that communicates on port 443 (requires a ssl/https connection)? is it simply IP address and drop the port?
I donāt know however there is a Caddyfile here for nextcloud. Does that help?
Well wow thatās some Caddyfile! I completely wiped my Nextcloud instance to start over there, much quicker and it was completely interfering with HA (multi-use of domain is not suggested)! Iām going to wipe my cache for safari, but now instead of retry it comes up with initializing? Donāt know if Iām getting closer, but feels like progress!
All HA stuff is working now though? I couldnāt get a proxmox install to work either. It was on a different IP address as well so I donāt know it thatās related or not. At the end of the day I didnāt care enough to try and hunt it down.
Finally up and running! Started resetting everything and after router itās going perfect!
Couple follow ups:
- Webpage card config - have a cert on a local port thatās working from cell network in browser but not populating the card, any thoughts?
- I had seen the iframes need an ssl reference, if you donāt mind what is that additional config? Added to config.yaml for iframes section? Added to config lines in addons (if so, under what reference)?
Thank you, this is cool getting this working!
Also, my naivety but when the site is being accessed through secure connection why does the local items on the same network not passed into HA server? Local ports or IPs on the local that are in the Lovelace cards or views for some reason I thought would locally pull in then be served out to the web interface, is that not the processing path?
Huh? I have no idea what you are asking. Your router will need to support NAT loop back otherwise you can use the ip-address:port when on your LAN.
IFramesā¦ if you are using SSL for the HA frontend (which is why you use Caddy) Then the iFrame must also be ssl. I think I posted my iFrame config sā¦ if you then access frontend via IP-address:port then the iFrames wonāt connectā¦ just the way it is. Check my example above and/or the docs for iFrames. (Needs an iFrames: section).
Again no idea what you are asking. Can you show an example. It may again be mixing http and https
Hi David and Barichta, a big thank you to both of you!
The ssl tags that I see are from caddy1 thread but are these for addons
{
"ssl": true,
"certfile": "acme/acme-v02.api.letsencrypt.org/sites/domain.se/sites/domain.se.crt",
"keyfile": "acme/acme-v02.api.letsencrypt.org/sites/domain.se/sites/domain.se.key",
"log_level": "info"
}
Even though I have a https sub domain set for Homebridge this does not load on external interface:
If you want addons to use ssl you could set the certificates in the addon configuration.
For the webpage card looks like you might need to use the domain and https. Did you try that?
Hi David, Yes I tried the https + domain for the webpage card and it was not working in there (although works directly). Iāll have to fumble around this one for a little longer.
Iāve got plex working correctly & Iām also working on getting tautulli to work - where does the cert and key file get stored when using Caddy2? It seems like many add-ons refer back to these locations to pull their config.
Thank you
To complicate things I have the existing cert from a failed attempt with either nginx or dnsmasq that is confounding the addons certs, I think that I need to tease out the way to provide the cert file and key while having it pick up the right https reference. What do you think?
Hi David,
Iāve found cert location (not super hard to find), but one of my subdomains is being tricky and not actually generating a cert folder - I have main domain + 4 other subdomains but no joy for a single additional one - no matter what I name it. Is there a theoretical max certs? or am I just doing something wrong (header issue maybe)?
Thank you in advance.
Donāt know. Thereās no max Iām aware of. If @berichta doesnāt respond you can try the caddy server forum.
I think Iām facing a similar issue to these configs - Iframe issue (panel_iframe, Webpage Card), but funny thing is Iām accessing https through https and still getting nothing - Iāll clear cache to confirm.
Hey David, I just saw that this was your post: https://dew-itwebservices.com.au/setting-home-assistant-up-for-secure-access-over-the-internet/, really liked it and Iām going to add the port number to the end of my https references for iframe and give that a try.
I have been meaning to do a post for caddy2 as well. Non standard port is a good idea.