about summary refs log tree commit diff
path: root/nixos/tests/xandikos.nix
diff options
context:
space:
mode:
author0x4A6F <0x4A6F@users.noreply.github.com>2020-05-08 18:37:46 +0200
committer0x4A6F <0x4A6F@users.noreply.github.com>2020-05-08 19:00:00 +0200
commit79df7e6d94d0a5435717f2a82dbbf3fad6d9d0ca (patch)
tree06829c9882f32501bc81a0a061f096cac523aa4b /nixos/tests/xandikos.nix
parent71a137a297ba3b076e015ae6e71bb8c849d615bd (diff)
nixosTests.xandikos: fix route-prefix
Diffstat (limited to 'nixos/tests/xandikos.nix')
-rw-r--r--nixos/tests/xandikos.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/xandikos.nix b/nixos/tests/xandikos.nix
index 0fded20ff1a9c..886c3e0082f74 100644
--- a/nixos/tests/xandikos.nix
+++ b/nixos/tests/xandikos.nix
@@ -17,7 +17,7 @@ import ./make-test-python.nix (
           services.xandikos.enable = true;
           services.xandikos.address = "localhost";
           services.xandikos.port = 8080;
-          services.xandikos.routePrefix = "/xandikos/";
+          services.xandikos.routePrefix = "/xandikos-prefix/";
           services.xandikos.extraOptions = [
             "--defaults"
           ];
@@ -28,7 +28,7 @@ import ./make-test-python.nix (
               serverName = "xandikos.local";
               basicAuth.xandikos = "snakeOilPassword";
               locations."/xandikos/" = {
-                proxyPass = "http://localhost:8080/";
+                proxyPass = "http://localhost:8080/xandikos-prefix/";
               };
             };
           };