NextCloud:Disable server-side-encryption: Difference between revisions
No edit summary |
No edit summary |
||
| Line 6: | Line 6: | ||
* Change to the Nextcloud directory with the command | * Change to the Nextcloud directory with the command | ||
cd /var/www/html/nextcloud | |||
cd /var/www/html/nextcloud | |||
* Switch the Nextcloud maintenance mode to on with the command | * Switch the Nextcloud maintenance mode to on with the command | ||
sudo -u www-data php occ maintenance:mode --on | |||
sudo -u www-data php occ maintenance:mode --on | |||
* Disable encryption with the command | * Disable encryption with the command | ||
sudo -u www-data php occ encryption:disable | |||
sudo -u www-data php occ encryption:disable | |||
* Turn off maintenance mode with the command | * Turn off maintenance mode with the command | ||
sudo -u www-data php occ maintenance:mode --off | |||
sudo -u www-data php occ maintenance:mode --off | |||
== Source == | == Source == | ||