安装

1
apt install samba

配置

新建系统用户

1
useradd -M -s /sbin/nologin ${user}

新建 samba 用户

1
smbpasswd -a ${user}

修改 samba 配置文件

在文件末尾添加如下配置:

1
2
3
4
5
6
[Samba]
comment = Samba
path = /opt/samba
guest ok = no
read only = no
browseable = yes

不要忘了授予 ${user} /opt/samba 目录权限

重启 samba 服务

1
systemctl restart smbd.service

博客使用 Hexo,搭建在 Github Pages,源代码部署在 GitLab 上,使用相关 CI 自动化部署。

自动化部署

_config.yml

1
2
3
4
5
6
7
deploy:
type: git
repo: https://${username}:${token|password}@github.com/starudream/blog.git
branch: master
message: update
name: ${name}
email: ${email}

.gitlab-ci.yml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
image: node:lts-alpine

github:
stage: publish
script:
- apk add --no-cache git
- git config --global user.name ${name}
- git config --global user.email ${email}
- git clone https://${name}:${token|password}@github.com/starudream/blog.git .deploy_git
- npm install && npm install hexo-cli -g && hexo clean && hexo deploy
only:
- master

stages:
- publish

cache:
paths:
- node_modules