Hello,
Got a weird error going on and was seeking some guidance on how to fix or look for the solution because I’m stuck.
Basically, I have a Mautic site running 2.8.1 on a Digital Ocean server maintained by ServerPilot, running Nginx with an Apache proxy.
I’ve ssh’d in and setup my SSL key & certificate and redirected all traffic to HTTPS version.
All that’s working great.
But in the Mautic —> Systems —> Logs area, I have the following error (I removed any identifying info):
Any suggestions on how to fix this?
As I said, it seems to be running HTTPS just fine, get the little lock icon & all.
My certificate issuer is GoDaddy, and I've got a CA bundle by it's not cited for use by Nginx.
Any advice on how to fix this error would be greatly appreciated.
My Nginx config file looks like this:
ssl on;
ssl_certificate /path/to/certs/ssl/certificatefile.crt;
ssl_certificate_key /path/to/certs/ssl/keyfile.key;
root /path/to/public_html;
access_log /path/to/log/mautic/mautic_nginx.access.log main;
error_log /path/to/log/mautic/mautic_nginx.error.log;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-SSL on;
include /path/to/nginx/vhosts.d/mautic.d/*.nonssl_conf;
include /path/to/nginx/vhosts.d/mautic.d/*.conf;
}