发布网友 发布时间:2022-04-23 12:44
共2个回答
懂视网 时间:2022-04-23 04:37
新建用户, ghost不能用root运行,官方已做说明(https://docs.ghost.org/docs/install)
useradd ops
usermod -aG wheel ops
passwd ops
su - ops
安装Nginx和Node.js
sudo yum -y update
sudo yum -y install nginx nodejs
安装ghost
sudo npm i -g ghost-cli
sudo chown ops.ops /var/www/ghost/
sudo chmod 755 /var/www/ghost/
cd /var/www/ghost/
ghost install
安装过程中的交互问题:
https://docs.ghost.org/docs/cli-install#section-prompts
3. 启动博客
执行完上面的安装过程,会告诉你如何启动自己的博客,我的启动方式如下:
sudo systemctl start ghost_jidongdong-cn
配置Nginx
# cat /etc/nginx/conf.d/jidongdong.cn.conf
server {
listen 80;
server_name blog.jidongdong.cn;
location / {
proxy_pass http://127.0.0.1:2368;
proxy_set_header Host blog.jidongdong.cn;
proxy_set_header X-Forwarded-For $remote_addr;
}
}
# service nginx restart
4. 登录
浏览器输入你的域名或者主机IP即可登录。后台管理界面默认为:http://[域名]/ghost
相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!
推荐阅读:
Node.js中https使用案例解析
剖析Node.js cluster模块使用详解
怎样使用JS+H5实现微信摇一摇
热心网友 时间:2022-04-23 01:45
首先,需要在centos7上面配置网站所需要的环境。 如果说你不会配置网站环境,那可以安装webmin、kloxo、cp等面板来使用。 因为这样的面板在配置好之后都是配置好网站所需要的阿帕奇、mysql等环境的。