Ghost V1.0 Upgrade on Apache stack, related quirks and fixes
Right then, the Ghost V1.0 was out a while back and they made Ghost 0.11.x an LTS so I was not in any rush to upgrade too. I have not had much time to sort this out for a while and two days back when I finally came around to check how to upgrade, my first moment of concern was that officially supported stack is for NGINX.
I have moved my blog to the Apache Stack on DigitalOcean and while on my sandbox environment I still have NGINX, that is not a place I want to host my blog from. Anyhoo, I realised soon enough that while not officially supported it s easy to bypass the restrictions so I went ahead.
The upgrade itself couldn't have been simpler considering the major version bump. The answer to the question 'Was it worth it?' is something we will have to wait and see although I am liking what I see except for the initial hiccups.
Success
EDITED AFTER THE POST: Boy oh boy - just after I finished this post I saw the latest version of Ghost V1.12 is out and it was such a painless process compared to past. Just a simple command 'ghost update' and job done. That itself makes this whole pain kind of worth it.
OK so the steps I took are as presented below.
Backup¶
We will take the back-up from front end for all the posts and we will also backup on the server the entire directory where old instance of the blog is residing. To take backup of all the content and download it in a json
file, open your ghost site on a browser, navidate to Settings
and then click on Export
.
Next create the backup of folder on the server itself. To do this issue the following commands on the terminal.
Download and Install¶
As we are already in the right directory lets get on with installing the latest version of Ghost using npm.
Warning
It is at this point that you will have to deviate from official guide if you have Apache instead of NGINX. You will be prompted by the installer that it could not find NGINX and do you still want to continue. Default is 'No' so make sure you enter 'Y' and then press enter.
For me, rest of the install went smoothly.
Setup Wizard¶
Immediately after the install is complete, you will be presented with following questions:
Info
Please note that if you have configured SSL using LetsEncrypt as explained in previous posts on this blog then even if you are using https, the answer to blog url must be the with http and not https.
For example: I gave http://mgw.dumatics.com
and not https://mgw.dumatics.com
- Please do note that the response to 'Setup Nginx' must be 'no'
Warning
Please do note that the response on line 6 above to 'Setup Nginx' must be 'no'
After the questions are complete you will get a notification You can access you blog at http://your.blog.url
At this point, it is best to see which port is configured by ghost CLI
for this installation. you can do so by checking the configuration file like so:
You can change the port if you like but if it is different than the port you originally had for old version of ghost you can either change it here or you need to change Apache conf file in next step.
If you do decide to change the port here, then there should be no need to carry out the next step - Configure Apache.
Configure Apache
Assuming that the port in Ghost config file was 1234
, there will be some changes that you will need to make in Apache conf files like so:
Now change the port on ProxyPass
and ProxyPassReverse
to be same as what is in the config.production.json
file and save it by pressing Ctrl+x
and y
.- so for this example it will be changed to 1234
and change will look as below:
Now open the ssl config file for the site using commands below and make the same changes as above.
Tip
If done using LetsEncrypt, it will be named something like ghost-le-ssl.conf
.
Once the changes are saved, disable and enable the configurations using following commands:
Now if you enter you blog url in a browser, you should be presented with vanilla Ghost site. If not, something in server set-up has not worked and you will need to troubleshoot it and fix - luckily for me all worked like a charm.
Restore¶
Right, so you are now on the browser looking at the Vanilla Ghost install. First thing you need to do now is create the user with same credentials you had on your old version of ghost. To do his you will first need to enter the admin url for ghost and follow the steps to create your user.
Once you are into the admin interface, navigate to 'Settings' > 'Labs' and click on 'Choose File' button, select the json backup that was exported from your old version of the blog and then click on 'Import' button.
Now to restore the images from your old blog on the server issue following commands:
Warning
- The ghost CLI commands like stop, start and restart will require you to be in the directory where ghost is installed.
- While start and stop commands of ghost specifically ask for sudo credentials, restart command just keeps rotating and hence it is better to issue a command with sudo before you issue
ghost restart
.
This is it. Your old blog is now fully restored.
Tweak¶
This section is a bit of a pain because there are quite a few things that break with this version. So if you have heavily used html, you will painstakingly need to go through posts and add a new line between markdown and html content for it to be parsed properly or else it will display quite wiered outputs on your blog.
If you have used code blocks with syntax highlighting, another change is with older version you would have given three backticks followed by language-sql but now you just need to give three backticks followed by sql.
If you have used line numbering using prism.js, it just wont work and you will need to apply changes to your theme the way I did. Without going too much in detail on that, you can get the copy of prism.js, prism-custom-line-number.js, prism.css, prism-line-number.css using the github links for my theme and place them in assets directory of your theme.
Then make sure you include them in relevant files where your theme calls the javascripts.
Once done, issue the command ghost restart
and things should look pretty again.
Happy Migrating !!!