# CloudRoomSystem **Repository Path**: scorpio_cc/cloud-room-system ## Basic Information - **Project Name**: CloudRoomSystem - **Description**: ASDFGHJKL;EWFRHJUI - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-07-19 - **Last Updated**: 2023-10-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 项目需要准备环境: 下载FFmpeg:https://blog.csdn.net/qq_33697094/article/details/112718101 安装好环境变量即可 修改配置applica.yml中 video.file-path: F:\video(当前文件夹手动创建,上传的视频存放于此) guns-vip-main下ffmpeg包下controller中,修改private Path tempDir = Paths.get("F:\\videoTemp");(临时目录,手动创建) 使用openresty搭建nginx,使用lua增强nginx判断 下载openresty与lua-resty-http(解压后将.lua文件放入openresty的lualib下) nginx配置文件中http中增加client_max_body_size 0; #设置请求实体大小不限制 server配置中添加 location /admin/ { proxy_pass http://127.0.0.1:8080; } 项目访问路径 此处上传视频后有切出首图,nginx需要配置访问路径 #切片首图访问 location ~ ^/video.*\.(jpg)$ { root F://; }