今天我們將會在Ubuntu Server 14.04 LTS (Trusty)上安裝一個部落格平台Ghost。
Ghost是一款設計優美的發布平台,很容易使用且對任何人都免費。它是免費的開源軟體(FOSS),它的原始碼在Github上。截至2015年1月(LCTT 譯註:原文為2014,應為2015),它的介面很簡單還有分析面v板。編輯使用的是很便利的分割畫面顯示。
因此有了這篇步驟明確的在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