Nextcloud: Difference between revisions

Raboof (talk | contribs)
ONLYOFFICE: warning that saving currently doesn't actually work
Sandro (talk | contribs)
/SSL -> TLS, improve examples, write out virtualhost
Tags: Mobile edit Mobile web edit
Line 90: Line 90:
Alternatively apps can be manually installed via the app store integrated in your Nextcloud instance by navigating in the profile menu to the site "Apps".
Alternatively apps can be manually installed via the app store integrated in your Nextcloud instance by navigating in the profile menu to the site "Apps".


=== SSL ===
=== TLS ===


If you would like to setup Nextcloud with Let's Encrypt TLS certificates (or certs from any other certificate authority) make sure to set <code>services.nextcloud.https = true;</code> and to enable it in the nginx-vHost.
If you would like to setup Nextcloud with Let's Encrypt TLS certificates (or certs from any other certificate authority) make sure to set <code>services.nextcloud.https = true;</code> and to enable it in the nginx-VirtualHost.


{{file|/etc/nixos/configuration.nix|nix|<nowiki>
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
Line 98: Line 98:
   enable = true;                   
   enable = true;                   
   [...]
   [...]
   hostName = "example.org";
   hostName = "nextcloud.example.org";
   https = true;
   https = true;
};
};