GHOST 博客搭建

安装

推荐使用brew来安装,linux用户可以下载linuxbrew,比系统自带的管理软件管理起来更方便,可以随时删除。

nodejs

你可以通过从 http://nodejs.org 下载 .tar.gz 存档或者是通过包管理器安装。然后通过在终端窗口中输入 node -v 和 npm -v检查 Node 和 npm 是否安装成功。

forever

前面提到的启动 Ghost 使用 npm start 命令。这是一个在开发模式下启动和测试的不错的选择,但是通过这种命令行启动的方式有个缺点,即当你关闭终端窗口或者从 SSH 断开连接时,Ghost 就停止了。为了防止 Ghost 停止工作,我们需要安装Forever (https://npmjs.org/package/forever)
你可以使用 forever 以后台任务运行 Ghost 。forever 将会按照 Ghost 的配置,当进程 crash 后重启 Ghost。

通过以下命令安装 forever
npm install forever -g

ghost中文版

访问http://www.ghostchina.com/download/ ,下载最新中文版本,也可以使用

$ curl -L https://ghost.org/zip/ghost-latest.zip -o ghost.zip

来下载官方版本。

  • 使用以下命令解压存档:
$ unzip -uo ghost.zip -d ghost  

切换到刚才解压的 Ghost 文件夹目录下

$ cd /你的 Ghost 解压目录

输入以下命令安装 Ghost :

npm install --production

注意是两个 -
这个命令是为了安装程序的依赖,如果是在ghost中文网下载的完全版,则不需要执行此命令,直接执行即可。
在 npm 结束安装后,输入以下命令让 Ghost 以开发模式启动:

$ npm start

Ghost 将会运行在 127.0.0.1:2368

配置

Ghost有两种运行模式:开发模式和产品模式,需要通过config.js配置.
但是刚解压出来的ghost是没有config.js文件的,但是有一个config.sample.js文件。需要你重命名该文件为config.js。打开该文件

// ### Production
    // When running Ghost in the wild, use the production environment
    // Configure your URL and mail settings here
    production: {
        url: 'http://ghostchina.com', //替换为你自己的域名。
        mail: {},
        database: {
            client: 'mysql',
            connection: {
                host     : '127.0.0.1',
                user     : 'root', //我们暂且用 MySQL 的 root 账户
                password : '123456', //输入你的 MySQL 密码
                database : 'ghost', //我们前面为 Ghost 创建的数据库名称
                charset  : 'utf8'
            }
        },
        server: {
            // Host to be passed to node's `net.Server#listen()`
            host: '127.0.0.1',
            // Port to be passed to node's `net.Server#listen()`, for iisnode set this to `process.env.PORT`
            port: '2368'
        }
    },

注意需要修改database,url,以及server三个字段。url设置是为了在博客中点击文章跳转,如果设置错误则跳不到正确的博文。
server字段的port修改为常用端口。

  • 需要特别注意的是如果需要外网访问,必须把host修改为外网的ip地址。

启动方式

安装插件

七牛

多说

访问 127.0.0.1:2368/ghost 并且设置管理员用户并登陆 Ghost 管理员

外网访问

在上面的步骤结束后,你只能内网访问ghost,这显然是没有意义的,因此需要使用nginx来代理

cd /etc/nginx/sites-available/
touch ghost.conf
vim ghost.conf

粘贴以下内容

server {  
    listen 80;
    server_name ghost_blog;

    location / {
        proxy_set_header   X-Real-IP $remote_addr;
        proxy_set_header   Host      $http_host;
        proxy_pass         http://127.0.0.1:2368;
    }
}

制作一个软链接

sudo ln -s /etc/nginx/sites-available/ghost.conf /etc/nginx/sites-enabled/ghost.conf

启动nginx

service nginx restart

OK,然后你就随便找一台电脑访问你的服务器的80端口,就可以使用啦
最后是forever后台运行ghost程序

NODE_ENV=production forever start index.js

查看使用:

forever list

停止使用:

forever stopall

大功告成,我的第一遍markdown博文也出炉了,撒花~

你可能感兴趣的:(GHOST 博客搭建)