CMS:Nextcloud update to V21 #15

Closed
opened 2021-04-13 23:30:19 +02:00 by bprieshof · 3 comments
bprieshof commented 2021-04-13 23:30:19 +02:00 (Migrated from 192.168.2.138:3000)

Nextcloud 21 added the following new fetures/requrements

  • New .well-known items/rules
  • Wants config option 'default phone region' to be set
  • Files High Performance Back-end (Requires some research)

nginx .well-known config example

location ^~ /.well-known {
    location = /.well-known/carddav     { return 301 /remote.php/dav/; }
    location = /.well-known/caldav      { return 301 /remote.php/dav/; }
    # Anything else is dynamically handled by Nextcloud
    location ^~ /.well-known            { return 301 /index.php$uri; }
    try_files $uri $uri/ =404;
}

Nextcloud 21 added the following new fetures/requrements * New `.well-known` items/rules * Wants config option 'default phone region' to be set * Files High Performance Back-end (Requires some research) nginx `.well-known` config example ``` location ^~ /.well-known { location = /.well-known/carddav { return 301 /remote.php/dav/; } location = /.well-known/caldav { return 301 /remote.php/dav/; } # Anything else is dynamically handled by Nextcloud location ^~ /.well-known { return 301 /index.php$uri; } try_files $uri $uri/ =404; } ```
bprieshof commented 2021-04-13 23:32:10 +02:00 (Migrated from 192.168.2.138:3000)

Command for 'Default phone region'
occ config:system:set default_phone_region --value=nl

Command for 'Default phone region' ```occ config:system:set default_phone_region --value=nl```
bprieshof commented 2021-04-14 14:53:26 +02:00 (Migrated from 192.168.2.138:3000)

Files High Performance Back-end config will be added to nginx config as preperation, but disabled since it does not (yet) support using 127.0.0.1 for mysql (and Web-V2 uses this)

Files High Performance Back-end config will be added to nginx config as preperation, but disabled since it does not (yet) support using 127.0.0.1 for mysql (and Web-V2 uses this)
bprieshof commented 2021-04-15 13:50:20 +02:00 (Migrated from 192.168.2.138:3000)

Fully tested The fix,
Closing this issue until upsteam fault in the Files High Performance Back-end is fixed

Fully tested The fix, Closing this issue until upsteam fault in the Files High Performance Back-end is fixed
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Work_Archive/VPS-scripts_Web-V2#15