当前位置:首页 > linux教程 > 列表

Linode XEN虚拟vps安装配置Ghost方法详解

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-22 22:59:48 浏览: 评论:0 

Linode是一个主机商专业提供XEN虚拟vps了,有不少国内朋友使用都觉得非常的不错,下文我们来看看Linode XEN虚拟vps安装配置Ghost方法.

我的 vps 情况:

操作系统 – CentOS 7 64 位,web 服务器软件 – Apache,Ghost1 基于 Node.js,它本身自带 web 服务器,不需要 Apache.

安装 Ghost

主要参照 Ghost 官方帮助2

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

解压 Ghost:$ unzip -uo ghost.zip -d ghost

安装 Ghost:

  1. $ cd ghost 
  2. $ npm install --production 

启动 Ghost:$ npm start --production

现在,你可以在 vps 上通过 127.0.0.1:2368 路径访问到 Ghost 博客了.

配置 Apache 与 Ghost,当然,你的目的可不是在 vps 上访问 Ghost,而是通过域名访问 Ghost,ghost 目录下有一个 config.example.js 文件,用于配置相关信息3,比如域名,端口等.

执行以下操作前,请先确保你在 DNS 服务器上把域名绑定到 vps 的 ip 地址.

复制一个 config.js:

  1. $ cd ghost 
  2. $ cp config.example.js config.js 

修改 config.js:将 config.js 里 production 部分里的 url: 'http://my-ghost-blog.com' 改为 url: 'http://phpfensi.com',这是我要使用的域名.

重启 Ghost:按 CTRL - C 关闭 Ghost,再执行 npm start --production 启动它,这时你能看到如下信息:

  1. Migrations: Up to date at version 003 
  2. Ghost is running...  
  3. Your blog is now available on http://phpfensi.com  
  4. Ctrl+C to shut down1 

但这信息并不意味着我们能访问到 Ghost 了,因为 11cn.net 域名访问的是 80 端口,在这个端口上监听的是 Apache 而不是 Node.js – 它是在 2368 端口监听着.

所以我们还需要配置 Apache,打开 /etc/httpd/conf.d/vhost.conf 文件,CentOS 系统的情况,添加如下内容:

  1. <VirtualHost *:80> 
  2.     ServerName www.phpfensi.com 
  3.     ServerAlias phpfensi.com 
  4.     ProxyPreserveHost on 
  5.     ProxyPass / http://localhost:2368/ 
  6.     ProxyPassReverse / http://localhost:2368/ 
  7. </VirtualHost> 

重启 apache:$ sudo service httpd restart

这样,Apache 充当代理,会把它监听到的流量转发给 Node.js 监听的端口,这时访问 http://phpfensi.com,我们就能打开 Ghost 博客了.

Tags: Linode XEN vps安装配置

分享到:

相关文章