【onlyoffice 服务器当地化部署】onlyoffice解决社区版文件编辑大小限制的
一、 起首解除文档服务中文件大小限制,进入容器onlyoffice-document-server中对指定配置文件举行maxDownloadBytes参数举行修改docker exec -it onlyoffice-document-server /bin/bash
cd /etc/onlyoffice/documentserver
vi default.json (容器内没有vi vim工具可以使用nano 下令)
"FileConverter": { "converter": { "maxDownloadBytes": 104857600, "downloadTimeout": { "connectionAndInactivity": "2m", "wholeCycle": "2m" }, "downloadAttemptMaxCount": 3, "downloadAttemptDelay": 1000, "maxprocesscount": 1, "fontDir": "null", "presentationThemesDir": "null", "x2tPath": "null", "docbuilderPath": "null", "docbuilderAllFontsPath": "null", "docbuilderCoreFontsPath": "", "args": "", "spawnOptions": {}, "errorfiles": "", "streamWriterBufferSize": 8388608, "maxRedeliveredCount": 2, "inputLimits": [ { "type": "docx;dotx;docm;dotm", "zip": { "uncompressed": "50MB", "template": ".xml" } }, { "type": "xlsx;xltx;xlsm;xltm", "zip": { "uncompressed": "300MB", "template": ".xml" } }, { "type": "pptx;ppsx;potx;pptm;ppsm;potm", "zip": { "uncompressed": "50MB", "template": "*.xml" } } ] } }
二、进入社区服务容器中对社区服务文件操作限制举行修改,进入指定路径在配置文件中增加参数即可
docker exec -it onlyoffice-community-server /bin/bash
cd /var/www/onlyoffice/WebStudio
nano web.appsettings.config
修改完成后重启 onlyoffice-community-server容器
三、题目解决过程(不关心可以不看这部门)
观察前端页面报错信息
https://img-blog.csdnimg.cn/direct/087e602368f04daa92ef58ba1e6e5cbf.png
在这个报错信息中看到涉及输出信息为 该文件比100m不能编辑较大。在群里大佬的提醒下,这个不一定是文档服务的报错信息。在社区服务源码中查找发现如下位置
https://img-blog.csdnimg.cn/direct/e17a7181473044128c85d89b42560c9c.png
发现是一个error massage ,在源码中找到ErrorMassage的使用位置为
/web/studio/ASC.Web.Studio/Products/Files/Services/DocumentService/DocumentServiceHelper.cs 文件下第151 行,这里发现是setupinfo中的参数作为比力标准举行抛出,看这个参数是否为配置读取。
if (file.ContentLength > SetupInfo.AvailableFileSize) throw new Exception(string.Format(FilesCommonResource.ErrorMassage_FileSizeEdit, FileSizeComment.FilesSizeToString(SetupInfo.AvailableFileSize)));
\web\studio\ASC.Web.Studio\Core\SetupInfo.cs文件下 第404行
AvailableFileSize = GetAppSettings("web.available-file-size", 100L * 1024L * 1024L);
这里看到使用的是配置文件中的available-file-size这个参数,否则就是100m默认值
第462行得到函数GetAppSettings这里找到最终的配置文件ConfigurationManagerExtension.AppSettings
private static string GetAppSettings(string key, string defaultValue) { var result = ConfigurationManagerExtension.AppSettings ?? defaultValue; if (!string.IsNullOrEmpty(result)) result = result.Trim(); return result; }
检索工程找到文件\web\studio\ASC.Web.Studio下的web.appsettings.config为配置文件,对应的是/var/www/onlyoffice/WebStudio下web.appsettings.config 其中有标签为web的key,限制额外增加一个参数配置。
增加完重启服务后题目解决可以举行编辑。
这里特别感谢两位开源社区群内大佬资助解决题目 小钞,kkk
onlyoffice中文交流社区 792389659
当地化部署请参看我的其他博文。
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页:
[1]