I am trying to configure the HTTPS messenger service to give an HTML error message when an IP address is blocked. It's working, but very slow. When I usee httpie, I get the following error:
Code: Select all
http: error: SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:579) while doing GET request to URL:
Code: Select all
May 22 21:46:41 melian lfd[20273]: Messenger HTTPS Service started for 2 domains
Code: Select all
<VirtualHost _default_:443>
ServerName www.example.com
# SSL Certs
SSLCertificateFile /etc/letsencrypt-import/live/example.com/cert.pem
SSLCertificateKeyFile /etc/letsencrypt-import/live/example.com/privkey.pem
SSLCertificateChainFile /etc/letsencrypt-import/live/example.com/chain.pem
</VirtualHost>
<VirtualHost _default_:443>
ServerName www.example.org
# SSL Certs
SSLCertificateFile /etc/letsencrypt-import/live/example.org/cert.pem
SSLCertificateKeyFile /etc/letsencrypt-import/live/example.org/privkey.pem
SSLCertificateChainFile /etc/letsencrypt-import/live/example.org/chain.pem
</VirtualHost>