Need help preventing letsencrypt rate limits and not needing tls insecure skip verify

If my research has actually made it through my head, I THINK this is what I should do when the rate limit drops:

  1. Change my Caddyfile (removing staging and debug once confirmed) to:
{
  acme_ca https://acme-staging-v02.api.letsencrypt.org/directory
  debug
}

notes.alfredoautomation.com {
	reverse_proxy	10.0.0.96:5230
}

cloud.alfredoautomation.com {
        redir /.well-known/caldav /remote.php/dav 301
        redir /.well-known/carddav /remote.php/dav 301
	reverse_proxy	10.0.0.96:81 
}

rss.alfredoautomation.com {
	reverse_proxy	10.0.0.96:8085
}

sso.alfredoautomation.com {
	reverse_proxy	10.0.0.96:82
}

photos.alfredoautomation.com {
	reverse_proxy	10.0.0.96:2283
}

food.alfredoautomation.com {
	reverse_proxy	10.0.0.96:4580
}
  1. Update my docker-compose files for next cloud and authentik to use ports 81 and 82 respectively.
  2. Make the other suggested changes for authentik as per the linked authentik guide in my original post.
  3. Profit?

Edit: Tried again today with my proposed changes and I think everything is working! yay!

1 Like