最后一步是配置OnlyOffice Document Server以使用HTTPS。 首先,我们需要编辑OnlyOffice Document Server的配置文件/etc/onlyoffice/documentserver/default.json,将ssl部分的enabled属性设置为true,并将certificate和key属性设置为你生成的自签名证书和私钥的路径: "ssl":{"enabled":true,"certificate":"/path/to/server.crt...
onlyoffice/documentserver 这里需要映射443端口,并且映射docker的/var/www/onlyoffice/Data目录,用于存放ssl证书。 二、ssl证书配置 将onlyoffice.key 和 onlyoffice.crt 格式的证书放到【宿主机】的/app/onlyoffice/DocumentServer/data/certs/目录下,注意证书文件名称一定是onlyoffice.key和onlyoffice.crt,否则启动报错,或者...
ONLYOFFICE镜像文件名称为onlyoffice/documentserver,在极空间的Dokcer界面搜索选择第一个下载,镜像标签选择latest就可以,目前社区版最新版本为8.1。 当然由于目前国内镜像站纷纷关闭,所以这里我们需要替换一下镜像源。在仓库中点击设置,选择添加。库的名称随意填写,库地址填入以下这些,熊猫测试均为可用的源,且速度非常不错,...
$docker run-itd-p8001:80-eJWT_ENABLED=false-eALLOW_PRIVATE_IP_ADDRESS=true\--nameonlyoffice--restartalways onlyoffice/documentserver 部署龙芯版(loongarch64架构,如使用3A5000、3A6000的CPU): $docker run-itd-p8001:80--namekodoffice--restartalways kodcloud/kodoffice:loongarch-7.4.1.3 2.以https方式启...
onlyoffice-DocumentServer 的权限验证 此为onlyoffice-DocumentServer的权限验证部分,不是workspace版本。 且假设你已经安装好了docker版本的onlyoffice-DocumentServer。 参考地址https://github.com/ONLYOFFICE/Docker-DocumentServer#available-configuration-parameters
* Starting from version 6.0, Document Server is distributed under a new name - ONLYOFFICE Docs. Components ONLYOFFICE Docs contains the following components: server- the backend server software layer which is the base for all other components of ONLYOFFICE Docs. ...
image: onlyoffice/documentserver:latest container_name: onlyoffice-documentserver depends_on: - onlyoffice-postgresql - onlyoffice-rabbitmq environment: - DB_TYPE=postgres - DB_HOST=onlyoffice-postgresql - DB_PORT=5432 # PostgreSQL 数据库使用的端口是 5432 ...
ONLYOFFICE Document Server is a free collaborative online office suite comprising viewers and editors for texts, spreadsheets and presentations, fully compatible with Office Open XML formats: .docx, .xlsx, .pptx and enabling collaborative editing in real time. ...
https://hub.docker.com/r/186184848/documentserver 同步官方最新版本里面有破解后的arm64架构的镜像和x86的镜像 1.破解人数限制 2.移动端编辑 3.中文字体 4.开启多核心 其他的参照官方步骤用法即可 快速启动命令: docker run --name=oo -i -t -d -p 9997:80 --restart=always -e JWT_ENABLED=false 186...
docker pull onlyoffice/documentserver 1. 2. ### 2. 配置SSL证书 为了使用HTTPS协议,你需要准备好SSL证书,并将证书文件放置在合适的位置。 ```markdown ```bash mkdir -p /app/onlyoffice/ssl cp your_ssl_cert_file.crt /app/onlyoffice/ssl/onlyoffice.crt ...