Skip to content

geniuscarrier/Install-Ghost-on-Media-Temple-DV-Server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Install Ghost on Media Temple DV Server

  • To learn more about Ghost, visit www.ghost.org.
  • Assume you have already added your domain (example.com) to Plesk. If not, please follow the instructions to do so.
  • To get started, connect to your server via SSH as the root user.
  • My server info:
> cat /etc/redhat-release
CentOS release 6.6 (Final)
> python -V
Python 2.6.6

1. Install Nodejs

1a. Install development tools and screen package

> yum groupinstall "Development Tools"
> yum install screen

1b. Download Nodejs

> cd /opt
> wget http://nodejs.org/dist/v0.10.36/node-v0.10.36.tar.gz

1c. Extract Nodejs

> tar xzf node-v0.10.36.tar.gz
> cd node-v0.10.36

1d. Compile Nodejs

> ./configure

1e. Install Nodejs

> make
> make install

1f. Check Installation

> node -v
v0.10.36

2. Install Ghost

Go to working directory

> cd /var/www/vhosts

2a. Download Ghost

> curl -L -O https://ghost.org/zip/ghost-latest.zip

2b. Extract and Config Ghost

> unzip -d example.com ghost-latest.zip
> cd example.com
> cp config.example.js config.js
> vim config.js

In production section, edit:

url: 'http://example.com'
host: 'YOUR-IP-ADDRESS'
port: '2368'

2c. Edit Apache VirtualHost Proxy

> vim ../conf/vhost.conf

Add the following code:

ProxyPass / http://YOUR-IP-ADDRESS:2368/
ProxyPassReverse / http://YOUR-IP-ADDRESS:2368/

2d. Install Ghost

> npm install --production

2e. Start Ghost

> npm start --production

Go to http://example.com

3. Make Ghost Run Forever

3a. Install Forever

> npm -g install forever

3b. Create the script to start Ghsot

> vim ghostStart.sh

Add

#!/bin/bash
NODE_ENV=production forever start index.js

3c. Create the script to stop Ghost

> vim ghostStop.sh

Add

#!/bin/bash
forever stop index.js

3d. Make the scripts executable for yourself

> chmod 750 ghostSt*

3e. Start Ghost

> ./ghostStart.sh

3f. Reconfigure Apache and Restart it

> web
> /etc/init.d/httpd restart

If the alis 'web' is not setup run the command below

> /usr/local/psa/admin/sbin/httpdmng --reconfigure-domain example.com
> /etc/init.d/httpd restart

Go to http://example.com

About

This guide will help you install Ghost on Media Temple DV Server.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published