Nextcloud Updater 12.04 to 13.0 Breaks Install
-
Anyone tried to update their Nextcloud instance via the updater script? In all previous occurences it worked successfully but this time, it is forcing the URL to www.mydomain.com/nextcloud instead of www.mydomain.com. Can't seem to find where this rewrite is happening. Wondering if anyone else is seeing this.
-
@nashbrydges said in Nextcloud Updater 12.04 to 13.0 Breaks Install:
Anyone tried to update their Nextcloud instance via the updater script? In all previous occurences it worked successfully but this time, it is forcing the URL to www.mydomain.com/nextcloud instead of www.mydomain.com. Can't seem to find where this rewrite is happening. Wondering if anyone else is seeing this.
Have not upgraded anything to 13 yet. In fact did not know it was part of the stable release track yet.
-
@nashbrydges said in Nextcloud Updater 12.04 to 13.0 Breaks Install:
Anyone tried to update their Nextcloud instance via the updater script? In all previous occurences it worked successfully but this time, it is forcing the URL to www.mydomain.com/nextcloud instead of www.mydomain.com. Can't seem to find where this rewrite is happening. Wondering if anyone else is seeing this.
It did not happen to me. I updated from 12.04 to the latest 13 beta last week and had no issues.
-
This is where the
/nextcloud
is removed.#remove need to use /nextcloud in URL by changing the document root in apache. This also adds the benefit of giving you a valid page if someone goes to the raw IP. nano /etc/httpd/conf/httpd.conf DocumentRoot "/var/www/html" to DocumentRoot "/var/www/html/nextcloud" #update nextcloud config.php to remove /nextcloud nano /var/www/html/nextcloud/config/config.php 'overwrite.cli.url' => 'http://nextcloud.domain.com',
-
@jaredbusch said in Nextcloud Updater 12.04 to 13.0 Breaks Install:
Have not upgraded anything to 13 yet. In fact did not know it was part of the stable release track yet.
Released today.
https://nextcloud.com/blog/nextcloud-13-brings-secure-file-sync-and-collaboration-to-the-next-level/
-
I just upgraded my 13 RC3 to the release, and it didn't have any problems there either.
*NB: My server is currently built on Ubuntu.
-
@jaredbusch I already had those changes made and even after the upgrade nothing had been changed. Here is what worked...
- Had to add the server private IP address to the trusted domains in the Nextcloud config file
- Restart the web service
- Navigate to the internal IP instead of the domain
That allowed me to complete the setup.