mirror of
https://github.com/YunoHost-Apps/nextcloud_ynh.git
synced 2024-09-03 19:55:57 +02:00
Merge pull request #130 from YunoHost-Apps/enh_enable_multi-instance
Enable multi-instance capability (closes #42)
This commit is contained in:
commit
e2c74df8dd
4 changed files with 4 additions and 3 deletions
|
@ -17,6 +17,7 @@ this package:
|
||||||
|
|
||||||
* Integrate with YunoHost users and SSO - i.e. logout button
|
* Integrate with YunoHost users and SSO - i.e. logout button
|
||||||
* Allow one user to be the administrator (set at the installation)
|
* Allow one user to be the administrator (set at the installation)
|
||||||
|
* Allow multiple instances of this application
|
||||||
* Optionally access the user home folder from Nextcloud files (set at the
|
* Optionally access the user home folder from Nextcloud files (set at the
|
||||||
installation, the sharing is enabled by default)
|
installation, the sharing is enabled by default)
|
||||||
* Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's
|
* Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
upgrade=1
|
upgrade=1
|
||||||
upgrade=1 from_commit=1cdb9ea1619c6acaaa90bae88b5c4bed5084a2a7
|
upgrade=1 from_commit=1cdb9ea1619c6acaaa90bae88b5c4bed5084a2a7
|
||||||
backup_restore=1
|
backup_restore=1
|
||||||
multi_instance=0
|
multi_instance=1
|
||||||
incorrect_path=1
|
incorrect_path=1
|
||||||
port_already_use=0
|
port_already_use=0
|
||||||
change_url=0
|
change_url=0
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
"requirements": {
|
"requirements": {
|
||||||
"yunohost": ">= 2.7.2"
|
"yunohost": ">= 2.7.2"
|
||||||
},
|
},
|
||||||
"multi_instance": false,
|
"multi_instance": true,
|
||||||
"services": [
|
"services": [
|
||||||
"nginx",
|
"nginx",
|
||||||
"php5-fpm",
|
"php5-fpm",
|
||||||
|
|
|
@ -274,7 +274,7 @@ chmod 755 /home/yunohost.app
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
# Use logrotate to manage application logfile
|
# Use logrotate to manage application logfile
|
||||||
ynh_use_logrotate "/home/yunohost.app/nextcloud/data/nextcloud.log"
|
ynh_use_logrotate "${datadir}/nextcloud.log"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# SETUP SSOWAT
|
# SETUP SSOWAT
|
||||||
|
|
Loading…
Add table
Reference in a new issue