月度归档: 2022 年 10 月

6 篇文章

Hexo的配置
hexo发布docker exec -it hexo /bin/bash git config --global user.email "xxxx@gmail.com" git config --global user.name "xxxx" # 生成 和 发布 hexo clean && hexo d github # # 生成 …
VPS采用Ed25519密钥登录
本文抄自:https://github.com/nkypy/blog/issues/17正文前先对比一下:3072的RSA的安全性=256的ECC(包括ECDSA和25519(EdDSA))25519相对于传统NIST P-256曲线的ECDSA效率与速度更快且为确定性签名。一、本地配置1.1 在Windows PowerShell中运行命令ssh…
VPS主机一键更换国内软件源脚本
https://gitee.com/SuperManito/LinuxMirrorshttps://github.com/SuperManito/LinuxMirrorsbash <(curl -sSL https://gitee.com/SuperManito/LinuxMirrors/raw/main/ChangeMirrors.sh) …
MJJ版的Linux入门教程
Getting Started with Linux --- mjj版的linux入门教程本文的首要目的是给予Linux初学者一个简单、易学的教程,以便在看完本文后对Linux系统有一个基础的认识(而非系统级的深入),可以对常见的软件和功能进行配置,甚至可以自己写一写一键脚本。时间和精力有限,有些内容没有写,其中也肯定有不少错误的地方。如果需要什么…
在LNMP环境下实现反向代理
安装LNMP稳定版只需要安装nginx wget http://soft.vpser.net/lnmp/lnmp1.9.tar.gz -cO lnmp1.9.tar.gz && tar zxf lnmp1.9.tar.gz && cd lnmp1.9 && ./install.sh nginx &nb…