如何在Ubuntu Server 14.04 LTS(Trusty) 上安裝Ghost

Arun Pyasi發表於2015-02-24

今天我們將會在Ubuntu Server 14.04 LTS (Trusty)上安裝一個部落格平臺Ghost。

Ghost是一款設計優美的釋出平臺,很容易使用且對任何人都免費。它是免費的開源軟體(FOSS),它的原始碼在Github上。截至2015年1月(LCTT 譯註:原文為2014,應為2015),它的介面很簡單還有分析皮膚。編輯使用的是很便利的分屏顯示。

因此有了這篇步驟明確的在Ubuntu Server上安裝Ghost的教程:

1. 升級Ubuntu

第一步是執行Ubuntu軟體升級並安裝一系列需要的額外包。

sudo apt-get update
sudo apt-get upgrade -y
sudo aptitude install -y build-essential zip vim wget

2. 下載並安裝 Node.js 原始碼

wget http://nodejs.org/dist/node-latest.tar.gz
tar -xzf node-latest.tar.gz
cd node-v*

現在,我們使用下面的命令安裝Node.js:

./configure
make
sudo make install

3. 下載並安裝Ghost

sudo mkdir -p /var/www/
cd /var/www/
sudo wget https://ghost.org/zip/ghost-latest.zip
sudo unzip -d ghost ghost-latest.zip
cd ghost/
sudo npm install --production

4. 配置Ghost

sudo nano config.example.js

在“Production”欄位,將:

host: '127.0.0.1',

修改成

host: '0.0.0.0',

建立Ghost使用者

sudo adduser --shell /bin/bash --gecos 'Ghost application' ghost
sudo chown -R ghost:ghost /var/www/ghost/

現在啟動Ghost,你需要以“ghost”使用者登入。

su - ghost
cd /var/www/ghost/

現在,你已經以“ghost”使用者登入,並可啟動Ghost:

npm start --production

via: http://linoxide.com/ubuntu-how-to/install-ghost-ubuntu-server-14-04/

作者:Arun Pyasi 譯者:geekpi 校對:wxy

本文由 LCTT 原創翻譯,Linux中國 榮譽推出

相關文章