一、Centos安装Certbot客户端
yum install certbot
二、生成证书
certbot certonly --standalone -d 你的域名
执行该命令后会生成如下文件
privkey.pem : the private key for your certificate.
fullchain.pem: the certificate file used in most server software.
c…
Node.js本身是以单线程的模式运行的,但它使用的是事件驱动来处理并发,这样有助于我们在多核 cpu 的系统上创建多个子进程,从而提高性能。
每个子进程总是带有三个流对象:child.stdin, child.stdout和child.stderr。他们可能会共享…