Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
348 changes: 318 additions & 30 deletions .github/workflows/sphinxbuild.yml

Large diffs are not rendered by default.

8 changes: 3 additions & 5 deletions admin_manual/configuration_database/mysql_4byte_support.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@ installation needs to be tweaked a bit.

.. warning::

This manual only covers MySQL 8 or newer and MariaDB 10.2 or newer.
If you use MariaDB 10.2, please check
`this older version <https://docs.nextcloud.com/server/20/admin_manual/configuration_database/mysql_4byte_support.html#mariadb-10-2-or-earlier>`_
of the documentation. If you use an older version of MySQL or MariaDB, please note that they are no longer supported
by the current Nextcloud version.
This guide applies only to MySQL 8 or newer and MariaDB 10.6 or newer.
For a list of supported MySQL and MariaDB versions, see our
:doc:`system requirements documentation <../installation/system_requirements>`.

1. Make sure the following InnoDB settings are set on your MySQL server::

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,5 +172,5 @@ enough for PHP, webservers or any load balancers involved.
Federated Cloud Sharing
-----------------------

If you are using `Federated Cloud Sharing <https://docs.nextcloud.com/server/33/admin_manual/configuration_files/federated_cloud_sharing_configuration.html>`_ and want to share large files, you can increase the timeout values for requests to the federated servers.
If you are using :doc:`Federated Cloud Sharing <federated_cloud_sharing_configuration>` and want to share large files, you can increase the timeout values for requests to the federated servers.
Therefore, you can set ``davstorage.request_timeout`` in your ``config.php``. The default value is 30 seconds.
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,8 @@ User Keys: Sharing & Recovery

.. figure:: images/encryption9.png

.. _enabling-users-file-recovery-keys:

**Enabling file recovery keys:**

- If you lose your Nextcloud password, you lose access to your encrypted files.
Expand Down Expand Up @@ -389,6 +391,6 @@ Further Reading
- :ref:`occ Command Reference: Encryption <encryption_label>`
- `How Nextcloud uses encryption to protect your data <https://nextcloud.com/blog/encryption-in-nextcloud/>`_
- `Technical impact of Authenticated Encryption <https://hackerone.com/reports/108082>`_
- `Nextcloud SSE Implementation Details <encryption_details.html>`_
- :doc:`Nextcloud SSE Implementation Details <encryption_details>`
- `Nextcloud Encryption (SSE & E2EE) Recovery Tools <https://github.com/nextcloud/encryption-recovery-tools>`_
- `Nextcloud E2EE Server API App (required for E2EE usage) <https://github.com/nextcloud/end_to_end_encryption/>`_
2 changes: 1 addition & 1 deletion admin_manual/configuration_files/encryption_details.rst
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ Sources
-------

- `encryption-recovery-tools repository on GitHub <https://github.com/nextcloud/encryption-recovery-tools>`_
- `Nextcloud Encryption Configuration documentation <https://docs.nextcloud.com/server/33/admin_manual/configuration_files/encryption_configuration.html>`_
- :doc:`Nextcloud Encryption Configuration documentation <encryption_configuration>`
- `Nextcloud Help response concerning the usage of version information <https://help.nextcloud.com/t/allow-file-decryption-with-only-the-files-keys-and-passwords/436/12>`_
- `Sourcecode: Creation of the Message Authentication Code <https://github.com/nextcloud/server/blob/a374d8837d6de459500e619cf608e0721ea14574/apps/encryption/lib/Crypto/Crypt.php#L504>`_
- `Sourcecode: Derivation of the Encryption Key <https://github.com/nextcloud/server/blob/a374d8837d6de459500e619cf608e0721ea14574/apps/encryption/lib/Crypto/Crypt.php#L346>`_
Expand Down
4 changes: 2 additions & 2 deletions admin_manual/configuration_files/external_storage/webdav.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ You need the following information:
* Folder name: The name of your local mountpoint.
* The URL of the WebDAV or Nextcloud server.
* Username and password for the remote server
* Secure https://: We always recommend https:// for security, though you can
leave this unchecked for http://.
* Secure ``https://``: We always recommend ``https://`` for security, though you can
leave this unchecked for ``http://``.

Optionally, a ``Remote Subfolder`` can be specified to change the destination
directory. The default is to use the whole root.
Expand Down
2 changes: 2 additions & 0 deletions admin_manual/configuration_server/logging_configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ Log field breakdown

Empty value are written as two dashes: ``--``.

.. _admin-audit-log:

Admin audit log (Optional)
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion admin_manual/installation/example_ubuntu.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ following commands in a terminal::

* This installs the packages for the Nextcloud core system.
If you are planning on running additional apps, keep in mind that they might
require additional packages. See `Prerequisites for manual installation <https://docs.nextcloud.com/server/33/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation>`_ for details.
require additional packages. See :ref:`Prerequisites for manual installation <prerequisites_label>` for details.

Now you need to create a database user and the database itself by using the
MySQL command line interface. The database tables will be created by Nextcloud
Expand Down
2 changes: 1 addition & 1 deletion admin_manual/office/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Nextcloud Office App Settings
Collabora Online Server
***********************

URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client. Collabora Online should use the same protocol (http:// or https://) as the server installation. Naturally, https:// is recommended.
URL (and port) of the Collabora Online server that provides the editing functionality as a WOPI client. Collabora Online should use the same protocol (``http://`` or ``https://``) as the server installation. Naturally, ``https://`` is recommended.

Restrict usage to specific groups
*********************************
Expand Down
2 changes: 1 addition & 1 deletion developer_manual/app_publishing_maintenance/publishing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Be technically sound
Respect the users
^^^^^^^^^^^^^^^^^

* Apps have to follow design and `HTML/CSS layout guidelines <../html_css_design/css.html>`_.
* Apps have to follow design and :doc:`HTML/CSS layout guidelines <../html_css_design/css>`.
* Apps correctly clean up after themselves on uninstall and correctly handle up- and downgrades.
* Apps clearly communicate their intended purpose and active features, including features introduced through updates.
* Apps respect the users' choices and do not make unexpected changes, or limit users' ability to revert them. For example, they do not remove other apps or disable settings.
Expand Down
2 changes: 1 addition & 1 deletion developer_manual/basics/controllers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ To turn off checks the following *Attributes* can be added before the controller
* ``#[NoAdminRequired]``: Also users that are not admins can access the page
* ``#[PublicPage]``: Everyone can access the page without having to log in
* ``#[NoTwoFactorRequired]``: A user can access the page before the two-factor challenge has been passed (use this wisely and only in two-factor auth apps, e.g. to allow setup during login)
* ``#[NoCSRFRequired]``: Don't check the CSRF token (use this wisely since you might create a security hole; to understand what it does see `CSRF in the security section <../prologue/security.html#cross-site-request-forgery>`__)
* ``#[NoCSRFRequired]``: Don't check the CSRF token (use this wisely since you might create a security hole; to understand what it does see :ref:`CSRF in the security section <csrf_introduction>`)

.. note::

Expand Down
2 changes: 1 addition & 1 deletion developer_manual/basics/storage/filesystem.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Nextcloud filesystem API

High level guide to using the Nextcloud filesystem API.

Because users can choose their storage backend, the filesystem should be accessed by using the appropriate filesystem classes. For a simplified filesystem for app specific data see `IAppData <appdata.html>`_
Because users can choose their storage backend, the filesystem should be accessed by using the appropriate filesystem classes. For a simplified filesystem for app specific data see :doc:`IAppData <appdata>`

Node API
^^^^^^^^
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ General
You describe what you want to do, ask feedback on the direction you take it and take it from there.
* When you are finished, use the merge request function on GitHub to create a pull request.
The other developers will look at it and give you feedback. You can signify that your PR is ready for review by adding the label "3. to review" to it.
See `the code review page for more information <../prologue/bugtracker/codereviews.html>`_
See :doc:`the code review page for more information <../../prologue/bugtracker/codereviews>`
* It is key to keep changes separate and small. The bigger and more hairy a PR grows, the harder it is to get it in.
So split things up where you can in smaller changes - if you need a small improvement like a API addition for a big feature addition, get it in first rather than adding it to the big piece of work!
* Decisions are made by consensus. We strive for making the best technical decisions and as nobody can know everything, we collaborate.
Expand Down
5 changes: 2 additions & 3 deletions user_manual/files/access_webdav.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ You can access files in Linux operating systems using the following methods.
Nautilus file manager
^^^^^^^^^^^^^^^^^^^^^

**When you configure your Nextcloud account in the** `GNOME Control Center
<../groupware/sync_gnome.html>`_, **your files will automatically be mounted
**When you configure your Nextcloud account in the** :doc:`GNOME Control Center <../groupware/sync_gnome>`, **your files will automatically be mounted
by Nautilus as a WebDAV share, unless you deselect file access**.

You can also mount your Nextcloud files manually. Use the ``davs://``
Expand Down Expand Up @@ -222,7 +221,7 @@ path of your certificate as in this example::
Accessing files using macOS
---------------------------

.. note:: The macOS Finder suffers from a `series of implementation problems <http://sabre.io/dav/clients/finder/>`_ and should only be used if the Nextcloud server runs on **Apache** and **mod_php**, or **Nginx 1.3.8+**. Alternative macOS-compatible clients capable of accessing WebDAV shares include open source apps like `Cyberduck <https://cyberduck.io/>`_ (see instructions `here <https://docs.nextcloud.com/server/33/user_manual/files/access_webdav.html#accessing-files-using-cyberduck>`_) and `Filezilla <https://filezilla-project.org>`_. Commercial clients include `Mountain Duck <https://mountainduck.io/>`_, `Forklift <https://binarynights.com/>`_, `Transmit <https://panic.com/>`_, and `Commander One <https://mac.eltima.com/>`_.
.. note:: The macOS Finder suffers from a `series of implementation problems <http://sabre.io/dav/clients/finder/>`_ and should only be used if the Nextcloud server runs on **Apache** and **mod_php**, or **Nginx 1.3.8+**. Alternative macOS-compatible clients capable of accessing WebDAV shares include open source apps like `Cyberduck <https://cyberduck.io/>`_ (see instructions `here <#accessing-files-using-cyberduck>`_) and `Filezilla <https://filezilla-project.org>`_. Commercial clients include `Mountain Duck <https://mountainduck.io/>`_, `Forklift <https://binarynights.com/>`_, `Transmit <https://panic.com/>`_, and `Commander One <https://mac.eltima.com/>`_.

To access files through the macOS Finder:

Expand Down
2 changes: 1 addition & 1 deletion user_manual/groupware/sync_android.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Files and notifications
confirm to grant access.

*Or*: In Nextcloud's web GUI, go to the
`user preferences <../userpreferences.html>`_, go to
:doc:`user preferences <../userpreferences>`, go to
**Security**. Generate an App password, click "Generate QR code" and
tap the QR scanner icon in the Nextcloud app, point your phone's
camera towards the screen.
Expand Down
2 changes: 1 addition & 1 deletion user_manual/groupware/sync_gnome.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This can be done by following these steps:
#. Enter your server URL, username, and password.
If you have enabled two-factor authentication (2FA), you need to generate an application password/token, because GNOME Online Accounts
`doesn't support Nextcloud's WebFlow login yet <https://gitlab.gnome.org/GNOME/gnome-online-accounts/issues/81>`_
(`Learn more <https://docs.nextcloud.com/server/33/user_manual/en/session_management.html#managing-devices>`_):
(:ref:`Learn more <managing_devices>`):

.. image:: ../images/goa-add-nextcloud-account.png

Expand Down
2 changes: 1 addition & 1 deletion user_manual/groupware/sync_kde.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ In Kalendar:

In KOrganizer and Kalendar:

3. Enter your username. As password, you need to generate an app-password/token (`Learn more <https://docs.nextcloud.com/server/33/user_manual/en/session_management.html#managing-devices>`_):
3. Enter your username. As password, you need to generate an app-password/token (:ref:`Learn more <managing_devices>`):

.. image:: ../images/korganizer_credentials.png

Expand Down
Loading