# group_chat **Repository Path**: user_home/group_chat ## Basic Information - **Project Name**: group_chat - **Description**: 群聊系统 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 3 - **Created**: 2024-05-27 - **Last Updated**: 2024-05-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # GROUP CHAT 群聊系统 # Develop - npm run dev ## Fetures - [x] 群主标记 - [x] 群主修改群名称 - [ ] 设置群成员身份 - [x] 输入框高度抖动问题 - [x] 图片预览穿透问题 - [x] 消息双击显示撤回 - [x] 添加时间展示 - [x] 粘贴文件上传 - [x] 群列表长按显示删除 - [x] 大文件hash支持 - [x] 头像请求缓存 - [x] 不限制IP多客户端 ## Nginx 配置注意事项 ```shell location /chatroom { proxy_pass http://127.0.0.1:38577/chatroom; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; # 代理长连接需要 proxy_http_version 1.1; proxy_set_header Connection ""; } ```