Initial commit: knowledge base

This commit is contained in:
2026-08-05 17:12:58 +08:00
commit 695bed03c4
6 changed files with 400 additions and 0 deletions
+65
View File
@@ -0,0 +1,65 @@
# HTTPS + Nginx 配置
## 架构
```
浏览器 (https://suyushi.top:443)
→ Nginx (端口 80/443)
→ LobeHub 容器 (内部 127.0.0.1:3210)
```
## Nginx 安装
```bash
yum install -y nginx
```
## Nginx 配置
文件路径:`/etc/nginx/conf.d/lobehub.conf`
```nginx
server {
listen 80;
server_name suyushi.top www.suyushi.top;
location / {
proxy_pass http://127.0.0.1:3210;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
```
## Let's Encrypt SSL 证书
### 安装 Certbot
```bash
yum install -y certbot python3-certbot-nginx
```
### 签发证书
```bash
certbot --nginx -d suyushi.top -d www.suyushi.top --non-interactive --agree-tos --email panghusys2025@gmail.com --redirect
```
> 证书自动续期已配置,90天有效,到期前自动更新
## 启动 Nginx 自启
```bash
systemctl enable nginx
```
## 端口冲突处理
如果 nginx 起不来报 `Address already in use:80`
```bash
fuser -k 80/tcp # 杀掉占用端口的进程
systemctl start nginx
```