本次提交包含大量代码优化、功能新增与服务端配置更新: 1. 修复分析报告统计数据,调整CMake策略设置 2. 优化APP权限配置、编辑器与聊天界面组件 3. 更新依赖库版本与pubspec配置 4. 新增文件传输服务端、信令服务器相关配置与脚本 5. 完善用户注销功能与数据库迁移脚本 6. 优化多处动画效果、代码风格与日志输出 7. 新增多种调试与部署脚本,修复已知BUG
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
# ============================================================
|
||
# 闲言APP — Supervisord配置 (信令服务进程管理)
|
||
# 创建时间: 2026-05-10
|
||
# 更新时间: 2026-05-10
|
||
# 作用: 管理WebSocket信令服务进程,自动重启
|
||
# 上次更新: 初始版本
|
||
# ============================================================
|
||
# 部署路径: /etc/supervisor/conf.d/xianyan-signaling.conf
|
||
# ============================================================
|
||
|
||
[program:xianyan-signaling]
|
||
command=php /www/wwwroot/tools.wktyl.com/server/signaling_server.php
|
||
directory=/www/wwwroot/tools.wktyl.com/server
|
||
user=www-data
|
||
autostart=true
|
||
autorestart=true
|
||
startretries=5
|
||
startsecs=3
|
||
redirect_stderr=true
|
||
stdout_logfile=/www/wwwroot/tools.wktyl.com/server/logs/supervisor.log
|
||
stdout_logfile_maxbytes=10MB
|
||
stdout_logfile_backups=3
|
||
environment=PATH="/usr/bin:/usr/local/bin"
|
||
|
||
[supervisord]
|
||
logfile=/www/wwwroot/tools.wktyl.com/server/logs/supervisord.log
|
||
logfile_maxbytes=10MB
|
||
logfile_backups=3
|
||
pidfile=/var/run/supervisord_xianyan.pid
|
||
|
||
[supervisorctl]
|
||
serverurl=unix:///var/run/supervisor_xianyan.sock
|
||
|
||
[unix_http_server]
|
||
file=/var/run/supervisor_xianyan.sock
|
||
chmod=0700
|
||
|
||
[rpcinterface:supervisor]
|
||
supervisor.rpcinterface_factory=supervisor.rpcinterface:make_main_rpcinterface
|