/images/profile.jpg

欢迎来到我的博客

postgrest配置及说明

postgrest配置及说明 准备scecret和token 1 2 3 4 5 # Allow "tr" to process non-utf8 byte sequences export LC_CTYPE=C # Read random bytes keeping only alphanumerics and add the secret to the configuration file echo "jwt-secret = \"$(< /dev/urandom tr -dc A-Za-z0-9 | head -c32)\""

git解决

git解决 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 sudo apt install gnutls-bin git config --global http.sslverify false git config --global http.postBuffer 1048576000 //增加至1GB缓存 #设置git最小和最大下载速度 git config --global http.lowSpeedLimit 0 git config --global http.lowSpeedTime 999999 #