Some users have been asking to make the `/` route customizable and to be able to disable it.
To allow customizations, the server will now serve the files in your `./public` folder as is. To migrate, you must delete the `index.html` and `production.html` files in the `./public` directory.
From now on, if you don't have any `index.html` file in your `./public` folder, the server will render the default Strapi homepage.
You can now also disable this behavior this the `public.defaultIndex` option. Read the documentation [here](../concepts/configurations.md#application).
## Upload plugin settings
A lot of our users have been requesting that we move some back-end specific configurations to files. While implementing the media library feature, we decided to move the upload plugin settings to files.
This means that you now have to configure your provider directly in the files. You can read the documentation [here](../plugins/upload.md#using-a-provider) to update.
## MongoDB Media relation changes
In the media library features, We wanted to make sure media would keep their ordering. To implement this in mongo we had to change the way the media relation was built.
Previously, the `upload_file` collection was the one keeping track of the relations and the entity related to the file had not reference to it.
Implementing ordering without cahnges the relations proved unfeasible. FInally we decided to add the reverse reference in the entities so it would make accessing the files really easy.
You will hence need to migrate your `mongo` database to avoid loosing references to your files.
When running in production, you should always backup your database before running migrations. To backup a `mongo` database, look at the documentation [here](https://docs.mongodb.com/manual/core/backups/)