这个没有什么特殊的限定要求,根据你的个人需求来选,尽量选性价比高一点的,我用的是雷电vps。
2、安装lnmp安装包
3、绑定域名
4、安装wordpress
a、先切换到网站目录下
b、设置目录权限
c、创建数据库
d、dns解析
e、配置wordpress
5、找一个好看的模板
原文链接http://leidianvps.com/servers/shownews.asp?id=324
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
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)