Skip to content

Instantly share code, notes, and snippets.

@notgne2
Created January 16, 2020 00:52
Show Gist options
  • Save notgne2/27e7ffeed353efdcd7d2495278270b1a to your computer and use it in GitHub Desktop.
Save notgne2/27e7ffeed353efdcd7d2495278270b1a to your computer and use it in GitHub Desktop.
{
services.nextcloud = {
enable = true;
hostName = "xyz.com";
https = true;
nginx.enable = true;
autoUpdateApps.enable = true;
config = { adminpass = "super secret"; };
};
services.nginx = {
virtualHosts."${config.services.nextcloud.hostName}" = {
enableACME = true;
forceSSL = true;
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment