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... by Nick | Aug 5, 2020 | Apache, CentOS, cPanel, Debian, Linux, Nginx, Software, Tech, Unix
Here’s how to create a cert/csr with more than one domain name. First you’ll want to create the directory. I use NGiNX so I like to put my certs in /etc/nginx/ssl, but you can put yours anywhere So now we will create the directory mkdir... by Nick | Aug 2, 2020 | CentOS, Divi, Fun, Linux, Nginx, PHP, Tech, WordPress
How to make the pricing table height the same. When using the pricing tables module you will see that the height of each table is going to rely on the content you put there, so if you have different content in each table, you will see something like this: This might... by Nick | Jun 19, 2020 | CentOS, Debian, Fun, Linux, Nginx, Servers, Software, Tech, Unix
First you have to install acme.sh. I like using acme.sh because it’s all bash based. As with all posts I take no responsibility for anything and this is more of a quick help instead of a full guide. I have a script that I use to deploy my WordPress sites. The... by Nick | Aug 13, 2019 | Apache, Linux, Nginx, PHP, Software
I NO LONGER RECOMEND USING THIS WAY. I RECOMEND USING WP-CLI SEARCH-REPALCE. HOW TO USE CAN BE FOUND HERE. Below is the search and replace for WP which I find really helpful when changing to a new domain. I DO NOT TAKE ANY RESPONSIBILITY FOR USING THIS. MAKE SURE TO...