Hi, as the name of the topic suggest I’m getting “net::err_cert_authority_invalid” on some machines, while it works perfectly fine on others. SSllabs gives me A score. Relevant part of the nginx config looks like this
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/dropshare.host/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/dropshare.host/privkey.pem; # managed by Certbot
ssl_trusted_certificate /etc/letsencrypt/live/dropshare.host/chain.pem;
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
if ($scheme != "https") {
return 301 https://$host$request_uri;
} # managed by Certbot