Create users with artisan tinker

Sometimes I need to quickly create a user for admin tasks or to test authentication stuff. Thanks to Auth Essentials - Jeffrey Way's Laracasts for explaining »

John

Create sites on linode server with bash script

I've found myself doing the same set of tasks every time I want to set up a new website on my Linode server, so I thought »

John

Basic HTTP Auth

To protect a site behind basic HTTP Authentication Using vhosts <Directory "/var/www/[path_to_site]"> AllowOverride All </Directory> <Location /> »

John

Ubuntu 14.04 nodejs and node conflicting

When trying to run commands on an ubuntu 14.04 server I was getting issues trying to install npm modules like pm2 and forever. The issue »

John

Running Ghost as a service

Once you have a ghost blog set up it's quite easy to get it running with the usual command: npm start --production However the blog will »

John