• Download an Entire Site with wget - mac OSX

    Download the Entire Site with wget If you don’t have homebrew please install it. It will make all our lives easier. Howto This was kinda simple but I wanted to post it here for reference. On thing I would like to note is the wait and limit-rate. Make sure you don’t trip any throttles or piss off any website owners by leaving the pipes wide open. wget \ --recursive \ --no-clobber \ --page-requisites \ --convert-links \ --wait=5 --limit-rate=20K \ --domains api.
  • Force HTTPS on Laravel 5 behind AWS ELB on EC2

    Laravel 5 - Enforcing HTTPS I’ve used a lot of frameworks. Laravel is great. Dealing with a load balancer Most of us are on a scaled service and most of us need HTTPS. It is much easier to put the SSL certificate on the load balancer and then proxy the request over port 80 to the actual server. It saves on CPU processes as well since the decryption work doesn’t have to be performed on the slave boxes.