Enable Secure SSL with HTTP2 support in NGINX for WordPress

Following my previous blog to generate a wildcard SSL Certificate from Let’s Encrypt for *.aventistech.com su – Password: cd /etc/letsencrypt/live/aventistech.com/ ls #You should see the following SSL Cert README cert.pem chain.pem fullchain.pem privkey.pem #Create a SSL Directory for Nginx and Copy fullchain.pem & privkey.pem mkdir /etc/nginx/ssl cp /etc/letsencrypt/live/aventistech.com/fullchain.pem /etc/nginx/ssl/fullchain.pem cp /etc/letsencrypt/live/aventistech.com/privkey.pem /etc/nginx/ssl/privkey.pem Enable SSL with … Read more

WordPress-Ubuntu16.04 with LEMP in VMware

Please refer to the following steps on how to setup a UAT Server in my VMware ESXi 6.5 to study and testing purpose Provision a new VM and install with ubuntu 16.04 Basic configuration of ubuntu 16.04 server Install Nginx, MariaDB and PHP7 (LEMP Stack) Install WordPress Install WP-CLI (Optional) Nginx 1.14.0 Add the repository … Read more

Install WordPress with LEMP on Ubuntu 18.04

Please refer to the following steps on how to setup a UAT Server in my VMware ESXi 6.5 to study and testing purpose Provision a new VM and install with ubuntu 18.04 Configure Static IP with NetPlan Basic configuration of ubuntu 16.04 server Install Nginx, MariaDB and PHP7 (LEMP Stack) Install WordPress Install WP-CLI (Optional) … Read more

Syntax Highlighting with Prismjs in WordPress

Select the language in https://prismjs.com/download.html and download the prism.css & prism.js I’m using GeneratePress Child Theme, and i had manually create css & js directory in generatepress_child /var/www/html/wordpress/wp-content/themes# ls generatepress* generatepress: 404.php content-link.php content-single.php footer.php inc no-results.php rtl.css search.php single.php archive.php content-page.php css functions.php index.php page.php screenshot.png sidebar-left.php style.css comments.php content.php fonts header.php js readme.txt … Read more