Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 44e80e344a9a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ca56563be406
Choose a head ref
  • 6 commits
  • 3 files changed
  • 3 contributors

Commits on Mar 2, 2019

  1. rmilter: fix inetSocket

    IPv6 address has to be between [] and the port after.
    
    (cherry picked from commit 2a61c05)
    Julien Moutinho authored and fpletz committed Mar 2, 2019
    Copy the full SHA
    5e8b8b4 View commit details
  2. nixos/nextcloud: update recommended nginx settings

    This updates the configuration to the recommendations in
    https://docs.nextcloud.com/server/15/admin_manual/installation/nginx.html
    
    (cherry picked from commit 7f86209)
    bachp authored and fpletz committed Mar 2, 2019
    Copy the full SHA
    e0538e5 View commit details
  3. nixos/nextcloud: use PHP 7.3 instead of 7.1 by default

    (cherry picked from commit 8f1b163)
    bachp authored and fpletz committed Mar 2, 2019
    Copy the full SHA
    2d12118 View commit details
  4. nixos/nextcloud: move phpPackage and phpOptions into pool

    This allows to have a php configuration for nextcloud that is independent
    of the global configuration.
    
    (cherry picked from commit f0c0b8d)
    bachp authored and fpletz committed Mar 2, 2019
    Copy the full SHA
    7723472 View commit details
  5. nixos/nextcloud: don't make phpPackages configurable

    It needs to match the version in phpfm which is hard coded.
    So there is no point in being able to change it.
    
    (cherry picked from commit 390b610)
    bachp authored and fpletz committed Mar 2, 2019
    Copy the full SHA
    20de174 View commit details
  6. nextcloud: 15.0.4 -> 15.0.5

    (cherry picked from commit 3eda950)
    fpletz committed Mar 2, 2019
    Copy the full SHA
    ca56563 View commit details
Showing with 21 additions and 26 deletions.
  1. +2 −2 nixos/modules/services/mail/rmilter.nix
  2. +17 −22 nixos/modules/services/web-apps/nextcloud.nix
  3. +2 −2 pkgs/servers/nextcloud/default.nix
4 changes: 2 additions & 2 deletions nixos/modules/services/mail/rmilter.nix
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ let
postfixCfg = config.services.postfix;
cfg = config.services.rmilter;

inetSocket = addr: port: "inet:[${toString port}@${addr}]";
inetSocket = addr: port: "inet:${addr}:${toString port}";
unixSocket = sock: "unix:${sock}";

systemdSocket = if cfg.bindSocket.type == "unix" then cfg.bindSocket.path
@@ -97,7 +97,7 @@ in

bindSocket.address = mkOption {
type = types.str;
default = "::1";
default = "[::1]";
example = "0.0.0.0";
description = ''
Inet address to listen on.
39 changes: 17 additions & 22 deletions nixos/modules/services/web-apps/nextcloud.nix
Original file line number Diff line number Diff line change
@@ -5,14 +5,18 @@ with lib;
let
cfg = config.services.nextcloud;

phpPackage = pkgs.php73;
phpPackages = pkgs.php73Packages;

toKeyValue = generators.toKeyValue {
mkKeyValue = generators.mkKeyValueDefault {} " = ";
};

phpOptionsExtensions = ''
${optionalString cfg.caching.apcu "extension=${cfg.phpPackages.apcu}/lib/php/extensions/apcu.so"}
${optionalString cfg.caching.redis "extension=${cfg.phpPackages.redis}/lib/php/extensions/redis.so"}
${optionalString cfg.caching.memcached "extension=${cfg.phpPackages.memcached}/lib/php/extensions/memcached.so"}
${optionalString cfg.caching.apcu "extension=${phpPackages.apcu}/lib/php/extensions/apcu.so"}
${optionalString cfg.caching.redis "extension=${phpPackages.redis}/lib/php/extensions/redis.so"}
${optionalString cfg.caching.memcached "extension=${phpPackages.memcached}/lib/php/extensions/memcached.so"}
extension=${phpPackages.imagick}/lib/php/extensions/imagick.so
zend_extension = opcache.so
opcache.enable = 1
'';
@@ -94,18 +98,6 @@ in {
'';
};

phpPackages = mkOption {
type = types.attrs;
default = pkgs.php71Packages;
defaultText = "pkgs.php71Packages";
description = ''
Overridable attribute of the PHP packages set to use. If any caching
module is enabled, it will be taken from here. Therefore it should
match the version of PHP given to
<literal>services.phpfpm.phpPackage</literal>.
'';
};

phpOptions = mkOption {
type = types.attrsOf types.str;
default = {
@@ -373,14 +365,14 @@ in {
};

services.phpfpm = {
phpOptions = phpOptionsExtensions;
phpPackage = pkgs.php71;
pools.nextcloud = let
phpAdminValues = (toKeyValue
(foldr (a: b: a // b) {}
(mapAttrsToList (k: v: { "php_admin_value[${k}]" = v; })
phpOptions)));
in {
phpOptions = phpOptionsExtensions;
phpPackage = phpPackage;
listen = "/run/phpfpm/nextcloud";
extraConfig = ''
listen.owner = nginx
@@ -421,7 +413,7 @@ in {
};
"/" = {
priority = 200;
extraConfig = "rewrite ^ /index.php$uri;";
extraConfig = "rewrite ^ /index.php$request_uri;";
};
"~ ^/store-apps" = {
priority = 201;
@@ -458,22 +450,23 @@ in {
fastcgi_read_timeout 120s;
'';
};
"~ ^/(?:updater|ocs-provider)(?:$|/)".extraConfig = ''
"~ ^/(?:updater|ocs-provider|ocm-provider)(?:$|\/)".extraConfig = ''
try_files $uri/ =404;
index index.php;
'';
"~ \\.(?:css|js|woff|svg|gif)$".extraConfig = ''
try_files $uri /index.php$uri$is_args$args;
"~ \\.(?:css|js|woff2?|svg|gif)$".extraConfig = ''
try_files $uri /index.php$request_uri;
add_header Cache-Control "public, max-age=15778463";
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag none;
add_header X-Download-Options noopen;
add_header X-Permitted-Cross-Domain-Policies none;
add_header Referrer-Policy no-referrer;
access_log off;
'';
"~ \\.(?:png|html|ttf|ico|jpg|jpeg)$".extraConfig = ''
try_files $uri /index.php$uri$is_args$args;
try_files $uri /index.php$request_uri;
access_log off;
'';
};
@@ -483,10 +476,12 @@ in {
add_header X-Robots-Tag none;
add_header X-Download-Options noopen;
add_header X-Permitted-Cross-Domain-Policies none;
add_header Referrer-Policy no-referrer;
error_page 403 /core/templates/403.php;
error_page 404 /core/templates/404.php;
client_max_body_size ${cfg.maxUploadSize};
fastcgi_buffers 64 4K;
fastcgi_hide_header X-Powered-By;
gzip on;
gzip_vary on;
gzip_comp_level 4;
4 changes: 2 additions & 2 deletions pkgs/servers/nextcloud/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "nextcloud-${version}";
version = "15.0.4";
version = "15.0.5";

src = fetchurl {
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
sha256 = "0xwg7p31y1pkjk1pzygh9shpqxnfkafrab52j7in7xblq53v0zgq";
sha256 = "125ra0rdgk17d8s80i54w0s58dqvjgkdpcxbczchqd3sg6dqcqa6";
};

installPhase = ''