Categories
Laravel Forge WordPress

Migrating BlogVault backup via SSH

BlogVault is one of my favorite tools. It makes daily backups quick and painless. Laravel Forge and DigitalOcean make server setup and maintenance a breeze. The only downside is Forge configures servers without password access, so “migrating” a website to a DigitalOcean server requires a few hoops to jump through, like configuring a public key […]

Categories
Drupal Development Resources

Force https via .htaccess

Sometimes it’s easier to more convenient to redirect via htaccess than the Secure Pages module when you want all pages to be secure. RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}