Automated Install Ghost With Nginx as Reverse Proxy on Ubuntu 14.04 LTS

Introduction

Ghost is a free and open source blogging platform written in node.js, completely customizable, and dedicated to publishing.

The Script

The script is hosted on GitHub Gist. For a fully automated installation, you will need the file install.sh. If you do not want to use an encrypted connection, then you will also need to replace https with http.

#!/bin/bash

###
# AUTHOR: Jonathan Zhang
# GitHub: @bbs4us
# Gist URL: https://gist.githubusercontent.com/bbs4us/58809c6ddbbbe960af9b/raw/install.sh
#           https://gist.github.com/bbs4us/58809c6ddbbbe960af9b
# LICENSE: GPL v3
#
## Fetch the "Phantom" Ghost installation script and run it.
###

apt-get update
apt-get install wget -y

wget -O - https://gist.githubusercontent.com/bbs4us/58809c6ddbbbe960af9b/raw/phantom.sh | bash >> /tmp/phantom.log
sleep 5
wget -N https://gist.githubusercontent.com/bbs4us/58809c6ddbbbe960af9b/raw/ghostly.sh && bash ghostly.sh https yoursite.tld # replace me
sleep 1

Now, you can create a new instance with the script. After installation, go to https://yoursite.tld/ghost/setup/ to set up user login credentials. You will see a warning about the certificate not being trusted; ignore that as the certificate is self-signed.

We use cookies to personalize your experience. By continuing to visit this website you agree to our use of cookies

More