diff options
| -rw-r--r-- | makefu/2configs/deployment/owncloud.nix | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/makefu/2configs/deployment/owncloud.nix b/makefu/2configs/deployment/owncloud.nix index b3ea7ed4e..cfde0aba8 100644 --- a/makefu/2configs/deployment/owncloud.nix +++ b/makefu/2configs/deployment/owncloud.nix @@ -143,6 +143,7 @@ let          opcache.memory_consumption=128          opcache.save_comments=1          opcache.revalidate_freq=1 +        opcache.file_cache = .opcache          zend_extension=${pkgs.php}/lib/php/extensions/opcache.so          display_errors = on @@ -155,6 +156,13 @@ let          extension=${pkgs.phpPackages.redis}/lib/php/extensions/redis.so          extension=${pkgs.phpPackages.apcu}/lib/php/extensions/apcu.so        ''; +      systemd.services."nextcloud-cron-${domain}" = { +        serviceConfig = { +          User = "nginx"; +          ExecStart = "${pkgs.php}/bin/php -f ${root}/cron.php"; +        }; +        startAt = "*:0/15"; +      };      };  in  {    imports = [  | 
