Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-12-05 23:18:47 +0300
committerLukas Reschke <lukas@statuscode.ch>2016-12-05 23:18:47 +0300
commit430ac3195836c5161ae0705db1e2e5227c111f8f (patch)
tree5ab964e7ebc343b79f49591672b04fffc40e89d9 /README.md
parent17ac662286ac0daee05dc7f83e5a734ff67284dd (diff)
Remove README
Better no readme than a wrong one. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'README.md')
-rw-r--r--README.md37
1 files changed, 0 insertions, 37 deletions
diff --git a/README.md b/README.md
deleted file mode 100644
index 862edf87..00000000
--- a/README.md
+++ /dev/null
@@ -1,37 +0,0 @@
-richdocuments – ownCloud application to integrate Collabora Online
-====================================================================
-
-Installation
-------------
-
- make dist
-
-Creates a tarball. The contents should go under `owncloud/apps/richdocuments`.
-
- rpmbuild -ba -vv owncloud-collabora-online.spec
-
-Creates an RPM package (tested only with openSUSE). The [CODE VM](https://collaboraoffice.com/code/) uses it.
-
-Memcache is a requirement (tested only with APCu). Install php-apcu, php5-apcu, or whatever this package is called on your Linux distro, and add the following line to owncloud/config/config.php:
-
- 'memcache.local' => '\OC\Memcache\APCu',
-
-From command line you can use:
-
- occ config:system:set --value='\OC\Memcache\APCu' memcache.local
-
-You can enable richdocument application from the command line:
-
- occ app:enable richdocuments
-
-You need to configure the WOPI Client URL, which is where the LibreOffice Online WebSocket Daemon (loolwsd) is listening. It is in Admin - Collabora Online section in ownCloud, or you can set it from command line:
-
- occ config:app:set --value='https://<hostname or IP address>:<port>' richdocuments wopi_url
-
-Default port is 9980. If loolwsd was compiled without SSL (like in the [CODE VM](https://collaboraoffice.com/code/)), you have to write `http` instead of `https`. If you use SSL, and you get the following error:
-
- cURL error 60: SSL certificate problem: self signed certificate in certificate chain
-
-You have to add the CA cert manually to ownCloud trusted cert storage:
-
- cat ca-chain.cert.pem >> owncloud/resources/config/ca-bundle.crt