Let’s Encrypt 泛域名配置证书 本文主要拿阿里云dns举例 安装acme.sh curl https://get.acme.sh | sh 2021-01-10更新:(直接拉会报如下错误) 1. Failed connect to raw.githubusercontent.com:443; 2. Please refer to https://curl.haxx.se/libcurl…
80端口反代多个项目 nginx.con配置文件如下 … server{ listen 80; server_name test2.suanliutudousi.com; location / { proxy_redirect off; proxy_pass http://localhost:3000; } } ser…
nginx配置文件, Nginx 配置文件nginx.conf中文详解 #定义Nginx运行的用户和用户组 user www www; #nginx进程数,建议设置为等于CPU总核心数。 worker_processes 8; #全局错误日志定义类型,[ debug | info | notice | warn | error | crit ] error_log /usr/local/nginx…