如何在vps主机上安装Ghost博客

如何在vps主机上安装Ghost博客,第1张

Ghost是基于node.js开发的博客程序,因此不像worldpress博客程序那样,需要安装php环境、mysql环境。服务器只要支持去等javascript即可

以快云vps安装Ghost博客为例

首先登录到快云vps,

然后将Ghost下载到vps

将Ghost博客程序解压缩,放置到网站根目录

在vps上绑定域名,将域名解析到快云vps IP

访问域名将出现安装界面,

最后根据安装界面提示,即可完成Ghost博客安装

一、更新系统

For Ubuntu/Debian :

sudo apt-get update

sudo apt-get upgrade

sudo aptitude install build-essential zip

For CentOS :

su -c "yum update"

二、安装Node.js

wget http://nodejs.org/dist/node-latest.tar.gz

tar -xzf node-latest.tar.gz

cd [node folder]

./configure

make

sudo make install

三、安装Ghost博客

sudo mkdir /home/wwwroot

cd /home/wwwroot

wget https://ghost.org/zip/ghost-latest.zip

sudo unzip -d ghost [Name-of-Ghost-zip].zip

cd ghost

sudo npm install --production

cp config.example.js config.js

sudo vim config.js

按i键进入编辑模式,把Production里的:

url: 'http://my-ghost-blog.com/'

host: '127.0.0.1',

port: '2368'

修改成:

url: 'http://你自己的域名/'

host: '0.0.0.0',

port: '80'

按,Esc键,接着按下 :wq ,就是保存退出的意思。

npm start --production


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/405165.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-05-21
下一篇2023-05-21

发表评论

登录后才能评论

评论列表(0条)

    保存