Move nextcloud to separate file

This commit is contained in:
Alexander Bantyev 2020-08-04 15:13:03 +03:00
parent b83e7b24f7
commit d93277c933
Signed by: balsoft
GPG Key ID: E081FF12ADCB4AD5

View File

@ -50,22 +50,6 @@
}; };
networking.firewall.trustedInterfaces = [ "eth0" ]; networking.firewall.trustedInterfaces = [ "eth0" ];
services.nextcloud = {
enable = config.device == "AMD-Workstation";
nginx.enable = true;
hostName = "nextcloud.balsoft.ru";
config.adminpassFile = "/home/balsoft/nextcloud-admin";
package = pkgs.nextcloud19;
https = true;
};
services.nginx.enable = config.device == "AMD-Workstation"; services.nginx.enable = config.device == "AMD-Workstation";
services.nginx.virtualHosts."nextcloud.balsoft.ru" = {
enableACME = true;
forceSSL = true;
locations."/".proxyWebsockets = true;
locations."~ ^\\/(?:build|tests|config|lib|3rdparty|templates|data)\\/".proxyWebsockets = true;
locations."~ ^\\/(?:index|remote|public|cron|core/ajax\\/update|status|ocs\\/v[12]|updater\\/.+|ocs-provider\\/.+|ocm-provider\\/.+)\\.php(?:$|\\/)".proxyWebsockets = true;
};
} }