Category Archives: Linux

Ubuntu安装企业微信

之前用wine自己搞很费劲,实际上DeepIn团队已经帮我们做好了完整的企业微信包,只不过是基于DeepIn Linux的,我们可以在Ubuntu上安装一个DeepIn的容器,然后再安装企业微信。

1 安装Deepin wine For Ubuntu

https://github.com/wszqkzqk/deepin-wine-ubuntu

然后执行install.sh

2 安装企业微信

http://mirrors.aliyun.com/deepin/pool/[......]

继续阅读

在nginx后部署gitbook

用独立二级域名结合gitbook后端服务
server {
server_name homs.coder4.com;

location / {
proxy_pass http://localhost:4000;
proxy_set_header Host $host;
proxy_buffering off;
}

}

路径转发,可以不用启动gitbook serve[......]

继续阅读