Nextcloud: Difference between revisions
→ONLYOFFICE: warning that saving currently doesn't actually work |
/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". | ||
=== | === 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- | 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; | ||
}; | }; | ||