搭一个个人网站

注册域名

狗爹 注册域名

购买服务器

阿里云购买服务器 注意要为 centos 7 版本高,好搞事情

连接服务器

ssh 连接服务器

安装docker

yum install docker

拉取镜像

docker pull ghost

运行镜像

docker run -d --name blog -p 5555:2368 -v /path/to/ghost/blog:/var/lib/ghost/content ghost

安装 nginx

yum install nginx 

配置nginx

进入目录 /ect/nginx/conf.d 添加 blog.conf文件,文件内容为

server{
    listen 80;
    server_name www.example.com;
    location / {
        proxy_redirect off;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://127.0.0.1:5555;
    }
}

启动nginx

systemctl start nginx

大功告成

posted @ 2018-03-28 15:02  rilweic  阅读(203)  评论(0编辑  收藏  举报