Ghost blog

Everything It Takes to Self-Host a Ghost Blog with DigitalOcean
Let’s see how to self-host a Ghost blog on DigitalOcean in 16 easy steps!
API Reference - Ghost
Comprehensive documentation of API clients, tools and libraries for working with Ghost.

Make links relative

$("a[href*='http://www.somesite.com'").each(function(){
 var x=$(this).prop("href").replace("http://www.somesite.com","");
 $(this).prop("href",x);
 });

Back up content

sudo docker exec  -w /var/lib/ghost myblog tar jc content >blog.tgz2
How to Automatically Back Up Ghost
Having a recent backup is obviously very important. We put the following scripts together to automate our backup process. This first script is run on our DigitalOcean droplet and is run every hour by a cron job. This script is responsible for backing up our SQLite3 database. On our DigitalOcean
How to Backup your Ghost Blog
Step by step guide on how to keep your Ghost blog fully backed up in case of emergency.
How I run my Ghost blog with nginx and MariaDB on Docker
A guide on how to run a Ghost blog with nginx as a frontend proxy and a MariaDB database backend using docker.
Run a Self Updating Ghost Blog with Docker
Want to run your own Ghost blog in Docker? How about a little sprinkle of continuous integration on top to make it self-updating? This guide is for you.
Migrating from Ghost to WordPress Step by Step
Ghost is a great blogging platform for those who enjoy its zen like process. If you want a bit more control like seo and social media shareability optimization plugins, then you may want to move to another platform till Ghost has those functionalities. As this blog grew I found my demands exceeded t…
Ghost JSON Export file to WordPress XML Import File Converter
This tool was last updated on Feb 27, 2015. Due to changes in Ghost and WP formats it may not work for you. A github repository with the latest working code can be found at: https://github.com/amayem/GhostJSON-to-WPXML This website will apply the latest version of the github repo. Please feel free t…
How to add search functionality to your Ghost blog using the Ghost API
Adding search to your Ghost blog is relatively simple but requires a smallamount of skill to edit your theme files. You can see how search works on thehomepage of this blog [https://mrvautin.com]. First of all, you need to turn on the Ghost Public API (which by default isturned off). You will wa…