Changes between Version 6 and Version 7 of nextcloud-admin


Ignore:
Timestamp:
Jul 22, 2017, 3:25:28 AM (7 years ago)
Author:
Jamie McClelland
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • nextcloud-admin

    v6 v7  
    6060For the richtext editor to work, we have to have Collabora Online installed. Fortunately it can be installed as a docker image.
    6161
    62 We are loosely following [https://icewind.nl/entry/collabora-online/ these instructions for installation with nginx]. They depend on a [https://hub.docker.com/r/collabora/code/ collabora-code docker image], which has a [https://github.com/CollaboraOnline/Docker-CODE Docker file that lives on github]. Rather than pull in their unverified docker image, I have forked their Docker file (git://git.mayfirst.org/mfpl/collabora-code), with instructions on how to build it from scratch.
     62We are loosely following [https://icewind.nl/entry/collabora-online/ these instructions for installation with nginx] (that page includes an nginx configuration file). They depend on a [https://hub.docker.com/r/collabora/code/ collabora-code docker image], which has a [https://github.com/CollaboraOnline/Docker-CODE Docker file that lives on github]. Rather than pull in their unverified docker image, I have forked their Docker file (git://git.mayfirst.org/mfpl/collabora-code), with instructions on how to build it from scratch.
    6363
    6464On lucius it should be installed via:
     
    7070
    7171See the README.mfpl.md for directions on installing and upgrading the docker images
     72
     73== Nginx and php fpm ==
     74
     75A working [https://docs.nextcloud.com/server/11/admin_manual/installation/nginx_nextcloud_9x.html nginx configuration file for nextcloud is available].
     76
     77In addition, php5-fpm should work mostly out of the box but requires these tweaks:
     78
     79 * Uncomment the the lines starting with env (so environment variables are available to nextcloud)
     80 * Add the file `/etc/php5/fpm/conf.d/100-nextcloud.ini` with the contents:
     81{{{
     82always_populate_raw_post_data = -1
     83}}}