Docker-compose for nextcloud
Create the .env
file from .env.dist example with the
environment variables from docker let’s encrypt nginx proxy
docker-compose up -d
./updateDockerImages.sh
In order to increase file size uploading :
You have to update the php.ini in the nextcloud app and update theses lines :
post_max_size = 1000M
upload_max_filesize = 1000M
You have to update the nginx.conf in the nginx-proxy and add this line :
http {
...
client_max_body_size 1000M;
}