Merge pull request 'develop' (#15) from develop into master
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #15
This commit is contained in:
commit
6d720541d6
2 changed files with 17 additions and 4 deletions
|
@ -19,7 +19,8 @@
|
|||
# FROM nextcloud:28.0.1-apache
|
||||
# FROM nextcloud:29.0.3-apache
|
||||
# FROM nextcloud:30.0.4-apache
|
||||
FROM nextcloud:31.0.0-apache
|
||||
# FROM nextcloud:31.0.0-apache
|
||||
FROM nextcloud:31.0.4-apache
|
||||
|
||||
# This is a stupid comment for a demo (remove later)
|
||||
|
||||
|
|
18
README.md
18
README.md
|
@ -22,11 +22,23 @@ ssh dokku@buddha-apps.boldcode.io app-json:set cloud appjson-path /app/app.json
|
|||
|
||||
Run after install
|
||||
|
||||
config:app:set files_lock lock_timeout --value '30'
|
||||
config:app:set files max_chunk_size --value 20971520
|
||||
|
||||
# FIXME: config:global:set --value '/Shared' share_folder
|
||||
|
||||
# set file lock timeout
|
||||
./occ config:app:set files_lock lock_timeout --value '30'
|
||||
|
||||
# set file chunk size
|
||||
./occ config:app:set files max_chunk_size --value 20971520
|
||||
|
||||
# set maintenance window
|
||||
./occ config:system:set maintenance_window_start --type=integer --value=1
|
||||
|
||||
|
||||
Add this in dokku nginx
|
||||
|
||||
rewrite ^/\.well-known/carddav https://$server_name/remote.php/dav/ permanent;
|
||||
rewrite ^/\.well-known/caldav https://$server_name/remote.php/dav/ permanent;
|
||||
|
||||
Add this in crontab
|
||||
|
||||
dokku enter cloud web su -l -s /bin/bash - www-data -c "cd html && php -dmemory_limit=-1 ./occ app:update --all"
|
||||
|
|
Loading…
Add table
Reference in a new issue