by Nick | Oct 25, 2020 | Acme.sh, CentOS, Debian, LetsEncrypt, Nginx
Here is how to install SSL certs using acme.sh that will work with haProxy acme.sh \ –install-cert \ -d domain.com \ –reloadcmd \ “cat \$CERT_KEY_PATH \$CERT_FULLCHAIN_PATH >/etc/haproxy/ssl/domain.com && \ service haproxy... by Nick | Aug 7, 2020 | Acme.sh, CentOS, Debian, LetsEncrypt, Linux, Nginx, Servers, Software, Unix
This is very useful when you have everything redirected with NGiNX to HTTPS, but acme.sh/LetsEncrypt requires HTTP for verification. server { listen 80; server_name DOMAIN.COM; root HTTP_ROOT; location ^~ /.well-known/acme-challenge/ { try_files $uri =404; } location...