Users expect, because the app is mentioned in our admin documentation, that there should be a compatible release and are disappointed if not.
We do not maintain or support user_external, and therefore the mention in our documention should go.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* various apps/features/configurations require more than the minimum so let's make it clearer that only meeting the minimum does come with trade-offs
* the built-in Updater requires PHP memory_limit (and/or available RAM) equal to the current size of the downloaded Archive package (see nextcloud/updater#505). Otherwise it will always fail on step 5 (integrity check). Let's mention that so people aren't surprised. They can of course do a manual update still.
Signed-off-by: Josh <josh.t.richards@gmail.com>
* Update to match current implementation's title in `server`
* Tidy up/expand the instructions a bit
* Split into Introduction + Usage section
* Update screenshot
Signed-off-by: Josh <josh.t.richards@gmail.com>
Make sure the following are always first:
- "Using the occ command"
- "Configuration Parameters"
- "Warnings on admin page"
- Then include everything else left automatically (without require this index be updated for every new section any longer)
- Automatically alphabetize included sections
Signed-off-by: Josh <josh.t.richards@gmail.com>
Fixesnextcloud/android#12758
Also already documented/requirement in the Play Store entries for both Files and Talk apps. So not a policy change; just documenting what's already reality.
Signed-off-by: Josh <josh.t.richards@gmail.com>
Nginx resets all response headers in a location block, if it contains any "add_header" directive. When setting the "Cache-Control" header for static assets, this was originally worked around by using the "expires" directive instead. https://github.com/nextcloud/documentation/pull/8083 however added the "immutable" flag for assets with "v=" query parameter and broke all other response headers for assets that way.
This commit fixes this by re-adding all reponse headers explicitly for those assets. Originally those doubled code was removed thanks to using "expires", but I see no way to have both: the "immutable" flag as well as avoiding doubled headers via "expires" directive.
Additionally, this commit avoids the trailing comma and space in the Cache-Control header for assets without "v=" query parameter, and adds sets the wasm MIME type in a cleaner/more consistent way together with js/mjs, and rephrases the broken comment sentence.
Signed-off-by: MichaIng <micha@dietpi.com>
`mail_smtpdebug` was being described in two places, one of which was incomplete (it didn't note the requirement to also change `loglevel` to `0`... leading to confusion).
* Removes the inaccurate spot and moves the accurate one into its place so there are no longer two debug logging sections.
Signed-off-by: Josh <josh.t.richards@gmail.com>