Author: Ken Favors
How To Install Tiddlywiki On Node.js
http://tiddlywiki.com/static/Installing%2520TiddlyWiki%2520on%2520Node.js.html http://tiddlywiki.com/static/Node.js.html https://www.npmjs.com/package/tiddlywiki 1. Install Node.js $ sudo apt-get install nodejs 2. Install Tiddlywiki $ sudo npm install -g tiddlywiki…
How To Uninstall NGINX
https://askubuntu.com/questions/235347/what-is-the-best-way-to-uninstall-nginx We may want to uninstall and then re-install nginx if any problems occur. First, un-install with code below, then…
How To Setup Subdomains & LetsEncrypt On NGINX
How to Host Multiple Sites Using NGINX Using domain name: yourdomain.com yourdomain.com $ sudo letsencrypt certonly -a webroot –webroot-path=/var/www/yourdomain.com/html -d…
Enabling Nginx mod_rewrite
https://www.digitalocean.com/community/questions/enabling-nginx-mod_rewrite https://www.nginx.com/resources/wiki/start/topics/recipes/wordpress/ open the file below replacing ‘default’ if necessary with the sites server block: $ sudo nano /etc/nginx/sites-available/default Replace:…
How To Create A Vagrant Base Box
https://scotch.io/tutorials/how-to-create-a-vagrant-base-box-from-an-existing-one https://www.vagrantup.com/docs/virtualbox/boxes.html This tutorial will create a base box using Ubuntu 16.04 1. First, initialize vagrant, ssh into the box…
How To Provision A LEMP Stack In Vagrant
snippets of code taken from: https://github.com/danielwrobert/vagrant-LEMP/blob/master/provision/setup.sh https://github.com/panique/vagrant-lamp-bootstrap This will install Ubuntu 16.04, NGINX, MariaDB, PHP7-FPM and Git 1. Initialize Vagrant…