飞鱼 2020年03月12日 04:39:17
解决方法非常简单
第 1 步:检查 Nginx 的 proxy_set_header 配置
一般默认都是已经配置好的
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
如果是 Caddy 配置就更简单了
prox...
飞鱼 2020年02月24日 01:29:51
Caddy 是一款使用 Go 语言编写的开源 Web 服务器,默认支持 HTTP/2。
使用 Caddy 你可以简单、快速的部署 HTTPS 服务。
SSL证书的申请、续约都可以完全无感知,自动完成!
操作环境 Debian/Ubuntu/CentOS
* 当然 caddy 也可以在 Windows 上运行,文章的最后会讲
安装方法 1:使用官方安装脚本
curl https://getcaddy.com | bash -s personal
...
飞鱼 2020年03月02日 11:15:35
certbot 是一款可以自动申请 Let's Encrypt 免费SSL证书的工具。
操作环境 Debian 10
# 安装 certbot
apt update
apt install certbot
快速申请 RSA 证书
本操作需要在服务器上执行
# 关闭占用 80 端口的程序
# 自动申请证书向导
certbot certonly --standalone
# 域名需要绑定到服务器IP
# 多个域名请使用空格分开 ...