Hello,
so i do this simple task :
1> Install frech ubuntu server 16.04 LTS
2> Install OnlyOffice with script :
- wget
http://download.onlyoffice.com/install/ ... install.sh- bash opensource-install.sh -md "yourdomain.com"
3> Create my own ssl certificate :
- domaine=oo.mydmoine.com
- cd /etc/ssl
- mkdir $domaine
- cd $domaine
- openssl genrsa -out $domaine.key 2048
- openssl req -new -key $domaine.key -out $domaine.csr
- openssl x509 -req -days 365 -in $domaine.csr -signkey $domaine.key -out $domaine.crt
4> Copy certificat files on docker onlyOffice :
- cp /etc/ssl/$domaine.key ./app/onlyoffice/CommunityServer/data/certs/onlyoffice.key
- cp /etc/ssl/$domaine.crt /app/onlyoffice/CommunityServer/data/certs/onlyoffice.crt
5> restart docker community
- found docker id with
- docker ps
- restart the cdocker community :
- docker restart b510353c2b25
6> go to web access
https://yourdomain.comand works
thanks !!!!