Hexo博客部署到服务器

1、安装git

在Centos系统上安装git

yum install git

检测是否安装成功

$ git --version
git version 1.8.3.1

添加git用户

adduser git

修改git用户密码

passwd git

添加公钥,并赋予权限

su git
cd ~
mkdir .ssh
chmod 755 .ssh
cd .ssh
touch authorized_keys
chmod 644 authorized_keys
vim authorized_keys

将公钥id_rsa.pub复制进去
就是电脑上的公钥
Hexo博客部署到服务器_第1张图片
禁止git用户使用ssh登陆

vim /etc/passwd

修改

git:x:1000:1000::/home/git:/bin/sh

git:x:1000:1000::/home/git:/usr/bin/git-shell

2、配置git仓库

mkdir /var/repo
cd /var/repo

初始化git仓库

git init --bare blog.git

赋予git用户权限

chown -R git:git blog.git

通过git hook将仓库的内容共享到*/data/www/zhanghanlun*目录,
在hook目录下添加post-receive文件

vim /var/repo/blog.git/hooks/post-receive

添加如下内容

#!/bin/sh
git --work-tree=/data/www/zhanghanlun --git-dir=/var/repo/blog.git checkout -f

赋予可执行权限

chmod +x post-receive

创建/data/www/zhanghanlun并改变该文件夹的用户为git

mkdir /data/www/zhanghanlun
cd /data/www
chown -R git:git zhanghanlun

3、配置nginx

其实nginx的配置可以用宝塔面板来设置,省时省力。
nginx配置文件如下:

server
{
    listen 80;
	listen 443 ssl http2;
    server_name www.zhanghanlun.com;
    index index.php index.html index.htm default.php default.htm default.html;
    root /www/wwwroot/www.zhanghanlun.com;
    
    #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
    #error_page 404/404.html;
    #HTTP_TO_HTTPS_START
    if ($server_port !~ 443){
        rewrite ^(/.*)$ https://$host$1 permanent;
    }
    #HTTP_TO_HTTPS_END
    ssl_certificate    /www/server/panel/vhost/cert/www.zhanghanlun.com/fullchain.pem;
    ssl_certificate_key    /www/server/panel/vhost/cert/www.zhanghanlun.com/privkey.pem;
    ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
    ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
    ssl_prefer_server_ciphers on;
    ssl_session_cache shared:SSL:10m;
    ssl_session_timeout 10m;
    error_page 497  https://$host$request_uri;

    #SSL-END
    
    #ERROR-PAGE-START  错误页配置,可以注释、删除或修改
    #error_page 404 /404.html;
    #error_page 502 /502.html;
    #ERROR-PAGE-END
    
    #PHP-INFO-START  PHP引用配置,可以注释或修改
    include enable-php-56.conf;
    #PHP-INFO-END
    
    #REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
    include /www/server/panel/vhost/rewrite/www.zhanghanlun.com.conf;
    #REWRITE-END
    
    #禁止访问的文件或目录
    location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
    {
        return 404;
    }
    
    #一键申请SSL证书验证目录相关设置
    location ~ \.well-known{
        allow all;
    }
    
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
        expires      30d;
        error_log off;
        access_log /dev/null;
    }
    
    location ~ .*\.(js|css)?$
    {
        expires      12h;
        error_log off;
        access_log /dev/null; 
    }
    access_log  /www/wwwlogs/www.zhanghanlun.com.log;
    error_log  /www/wwwlogs/www.zhanghanlun.com.error.log;
}

4、添加hexo配置

deploy:
    type: git
    repo: git@你的IP:/var/repo/blog.git
    branch: master

你可能感兴趣的:(GithubPage,hexo)