2022年5月

进入 mysql5.7 容器

sudo docker exec -it mysql5.7 bash

mysql -uroot -p123456

创建用户,密码随意

mysql> create user '239239'@'%' identified by '123456';
mysql> grant all privileges on *.* to '239239'@'%' with grant option;
mysql> flush privileges;

创建数据库
mysql> create database 239239;

Caddyfile

http://yourdomain.com {
basicauth {
    bob xDJhJDEwJEVoOWxYTmY5eVdCbXhhRC95SGZoYxU0bVQvaXhyamdLRkxKdUlPSHhLVFY0RWNlRDN5eDx2
}
file_server {
    root /home/share
    browse
}

}

其中密码应该使用 caddy hash-password 生成

git config --global url.https://xx.xx.xx/.insteadof https://   增加
git config --global --unset url.https://xx.xx.xx/.insteadof https://   取消
git config --global --list  检查

xx.xx.xx 是代理域名