Aufgabe #1878
offenBei der Instanz Dateiverwaltung (Anwendung Nextcloud) möglichst alle Warnungen (Version 26) zu beheben.
0%
Beschreibung
https://cloud.stura.htw-dresden.de/settings/admin/overview
Security & setup warnings
There are some warnings regarding your setup. Your web server is not properly set up to resolve "/ocm-provider/". This is most likely related to a web server configuration that was not updated to deliver this folder directly. Please compare your configuration against the shipped rewrite rules in ".htaccess" for Apache or the provided one in the documentation for Nginx at it's documentation page ↗. On Nginx those are typically the lines starting with "location ~" that need an update. The database is missing some indexes. Due to the fact that adding indexes on big tables could take some time they were not added automatically. By running "occ db:add-missing-indices" those missing indexes could be added manually while the instance keeps running. Once the indexes are added queries to those tables are usually much faster. Missing index "systag_by_tagid" in table "oc_systemtag_object_mapping". Missing index "textstep_session" in table "text_steps".
Das ist (vermutlich) noch eine Nacharbeit, die von #1648 offen ist.
Von PaulRiegel vor 9 Monaten aktualisiert
- Blockiert Aufgabe #1822: Nextcloud Update Nix-Channel 23.05 -> 23.11 wurde hinzugefügt
Von SoerenBoxberger vor 9 Monaten aktualisiert
Snapshot gemacht: preTicket1878
Damit verschwindet die unterste Warnung von fehlenden Indices:
nextcloud-occ db:add-missing-indices
Es bleiben:
Your web server is not properly set up to resolve "/ocm-provider/". This is most likely related to a web server configuration that was not updated to deliver this folder directly. Please compare your configuration against the shipped rewrite rules in ".htaccess" for Apache or the provided one in the documentation for Nginx at it's documentation page ↗. On Nginx those are typically the lines starting with "location ~" that need an update.
The PHP OPcache module is not properly configured. See the documentation ↗ for more information.
The OPcache interned strings buffer is nearly full. To assure that repeating strings can be effectively cached, it is recommended to apply opcache.interned_strings_buffer to your PHP configuration with a value higher than 8.
Die erste davon stammt wohl aus einer Änderung aus der Nextcloud-Version 26.0.8, die vermutlich nur mit einem Update im alten channel zu beheben ist und sich auch beim Upgrade im Zuge von #1822 "von selbst" lösen würde.
Die passende Änderung ist schon in den nixpkgs im Nextclooud-Modul von NixOS enthalten, scheint aber irgendwie keine Anwendung durch die konfigurierten Autoupgrades gefunden zu haben...
Die zweite sollte (spätestens mit [stateVersion oder Channel?] 23.11) mit einer Zeile
services.nextcloud.phpOptions."opcache.interned_strings_buffer" = "23";
behoben werden können. Allerdings ist das nur ein Cache-Problem und kann auch nach #1822 noch gemacht werden.
Vermutlich wurde die Warnung durch größere Uploads ausgelöst.
Von SoerenBoxberger vor 9 Monaten aktualisiert
Ich habe jetzt folgende Option gesetzt:services.nextcloud.phpOptions."opcache.interned_strings_buffer" = "32";
Der Standard war 8
Nach #1822 sind keine Probleme mehr aufgeführt
Von SoerenBoxberger vor 9 Monaten aktualisiert
- Status wurde von Neu zu Feedback geändert
Von PaulRiegel vor 4 Monaten aktualisiert
Konnten die Probleme behoben werden?
Wurden neu hinzugefügte (oder anders geänderte) Optionen (erklärend (in der Datei für die Konfiguration für NixOS)) dokumentiert?