update nextcloud
This commit is contained in:
parent
545ba732d4
commit
b9254dbf7f
2 changed files with 9 additions and 6 deletions
|
@ -27,7 +27,7 @@
|
|||
./media-syncthing.nix
|
||||
./media-transmission2.nix
|
||||
|
||||
./social-jitsi.nix
|
||||
#./social-jitsi.nix
|
||||
./social-matrix-terranix.nix
|
||||
|
||||
];
|
||||
|
|
|
@ -8,11 +8,11 @@
|
|||
let
|
||||
nextcloudUid = 1000;
|
||||
nextcloudGid = 1000;
|
||||
nextcloudPort = 8080;
|
||||
nextcloudPort = 9080;
|
||||
nextcloudHostName = "nextcloud.ingolf-wagner.de";
|
||||
|
||||
phpPackage = pkgs.php73;
|
||||
nextcloudPackage = pkgs.nextcloud28;
|
||||
nextcloudPackage = pkgs.nextcloud29;
|
||||
mySQLPackage = pkgs.mysql;
|
||||
in
|
||||
{
|
||||
|
@ -175,15 +175,18 @@ in
|
|||
package = nextcloudPackage;
|
||||
autoUpdateApps.enable = true;
|
||||
hostName = nextcloudHostName;
|
||||
logLevel = 2;
|
||||
https = true;
|
||||
settings = {
|
||||
overwriteprotocol = "https";
|
||||
default_phone_region = "DE";
|
||||
loglevel = 2;
|
||||
};
|
||||
config = {
|
||||
adminpassFile = "/run/secrets/nextcloud_root_password";
|
||||
overwriteProtocol = "https";
|
||||
#overwriteProtocol = "https";
|
||||
dbtype = "mysql";
|
||||
dbpassFile = "/run/secrets/nextcloud_database_password";
|
||||
dbhost = "localhost:3306";
|
||||
defaultPhoneRegion = "DE";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue