feat: 添加日记系统
- 完整的 Django 后端 (diary app) - 前端页面 - 部署脚本 (本地 + 云端) - Nginx 配置 - 数据迁移工具 - 同步工具
This commit is contained in:
21
diary-system/nginx.conf
Executable file
21
diary-system/nginx.conf
Executable file
@@ -0,0 +1,21 @@
|
||||
server {
|
||||
listen 8001;
|
||||
server_name localhost;
|
||||
|
||||
location /static/ {
|
||||
alias /root/.openclaw/workspace/diary-system/backend/static/;
|
||||
}
|
||||
|
||||
location /api/ {
|
||||
proxy_pass http://127.0.0.1:8002;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
}
|
||||
|
||||
location / {
|
||||
root /root/.openclaw/workspace/diary-system/frontend;
|
||||
index index.html;
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user