kubeadm 使用静态POD启动KeepAlived和Haproxy
本文由 简悦 SimpRead 转码, 原文地址 blog.csdn.net Go 多版本管理工具 文章目录 Go 多版本管理工具 一、go get 命令 1.1 使用方法: 二、Goenv 三、GVM (Go Version Manager) 四、voidin
介绍 Nginx 安装 官方文档: https://nginx.org/en/linux_packages.html#Ubuntu 1 2 3 4 5 6 7 8 9 10 11 12 sudo apt install curl gnupg2 ca-certificates lsb-release ubuntu-keyring curl https://nginx.org/keys/nginx_signing.key | gpg --dearmor \ | sudo tee /usr/share/keyrings/nginx-archive-keyring.gpg >/dev/null gpg --dry-run --quiet --no-keyring --import --import-options import-show /usr/share/keyrings/nginx-archive-keyring.gpg echo "deb [signed-by=/usr/share/keyrings/nginx-archive-keyring.gpg] \ http://nginx.org/packages/ubuntu `lsb_release -cs` nginx" \ | sudo tee /etc/apt/sources.list.d/nginx.list echo -e "Package: *\nPin: origin nginx.org\nPin: release
SAML登录异常错误记录 Missing signature referencing the top-level element 原因 使用的Google的Saml协议接入单点登录, 后端配置了验证,需要勾选"已签署响应复选框&
gost配置反向代理隧道 初始化 1 2 3 4 5 mkdir -p /opt/go/src/github.com/go-gost cd /opt/go/src/github.com/go-gost git@github.com:go-gost/gost.git mkdir gost-plus cd gost-plus/ 配置gost.yaml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 services: - name: service-0 addr: :8080 handler: type: tunnel
服务端 部署 1 2 3 4 5 6 7 8 9 10 mkdir /opt/go/src/github.com/juanfont cd /opt/go/src/github.com/juanfont git clone https://github.com/juanfont/headscale.git cd headscale mkdir config touch config/db.sqlite cp config-example.yaml config/config.yaml vim config/config.yaml docker run --name=headscale --user=0 --volume=/opt/go/src/github.com/juanfont/headscale/config:/etc/headscale/ --workdir=/ -p 8080:8080 -p 9090:9090 --restart=always --runtime=runc --detach=true headscale/headscale:v0.23.0-beta.4 serve echo "alias headscale='docker container exec headscale headscale'" >> ~/.bashrc && . ~/.bashrc 配置用户 1 headscale user create test01 客