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: 21c97849d46c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4f3f06d070f1
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 26, 2020

  1. nextcloud: 20.0.0 -> 20.0.1

    Mic92 committed Oct 26, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    blink1073 Steven Silvester
    Copy the full SHA
    753f5ee View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    blink1073 Steven Silvester
    Copy the full SHA
    b7a2a5f View commit details

Commits on Nov 1, 2020

  1. Merge pull request #101553 from Mic92/nextcloud

    Nextcloud: fix ldap integration
    Ma27 authored Nov 1, 2020
    Copy the full SHA
    4f3f06d View commit details
Showing with 4 additions and 6 deletions.
  1. +2 −4 nixos/modules/services/web-apps/nextcloud.nix
  2. +2 −2 pkgs/servers/nextcloud/default.nix
6 changes: 2 additions & 4 deletions nixos/modules/services/web-apps/nextcloud.nix
Original file line number Diff line number Diff line change
@@ -549,9 +549,7 @@ in {
};
"/" = {
priority = 900;
extraConfig = if major < 20
then "rewrite ^ /index.php;"
else "try_files $uri $uri/ /index.php$request_uri;";
extraConfig = "rewrite ^ /index.php;";
};
"~ ^/store-apps" = {
priority = 201;
@@ -575,7 +573,7 @@ in {
"~ ^/(?:\\.|autotest|occ|issue|indie|db_|console)".extraConfig = ''
return 404;
'';
${if major < 20 then "~ ^\\/(?:index|remote|public|cron|core\\/ajax\\/update|status|ocs\\/v[12]|updater\\/.+|oc[ms]-provider\\/.+|.+\\/richdocumentscode\\/proxy)\\.php(?:$|\\/)" else "~ \\.php(?:$|/)"} = {
"~ ^\\/(?:index|remote|public|cron|core\\/ajax\\/update|status|ocs\\/v[12]|updater\\/.+|oc[ms]-provider\\/.+|.+\\/richdocumentscode\\/proxy)\\.php(?:$|\\/)" = {
priority = 500;
extraConfig = ''
include ${config.services.nginx.package}/conf/fastcgi.conf;
4 changes: 2 additions & 2 deletions pkgs/servers/nextcloud/default.nix
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@ in {
};

nextcloud20 = generic {
version = "20.0.0";
sha256 = "1n2cv1i56g6qpzkbl5xaf420zzr4y7isg0lskmr7ymk83way0wx2";
version = "20.0.1";
sha256 = "1z1fzz1i41k4dhdhi005l3gzkvnmmgqqz3rdr374cvk73q7bbiln";
};
}