vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / nginx-globalredirect.nix
blob5f5f4f344d8257eda215ceafe28acb4d2c23953a
1 import ./make-test-python.nix ({ pkgs, ... }: {
2   name = "nginx-globalredirect";
4   nodes = {
5     webserver = { pkgs, lib, ... }: {
6       services.nginx = {
7         enable = true;
8         virtualHosts.localhost = {
9           globalRedirect = "other.example.com";
10           # Add an exception
11           locations."/noredirect".return = "200 'foo'";
12         };
13       };
14     };
15   };
17   testScript = ''
18     webserver.wait_for_unit("nginx")
19     webserver.wait_for_open_port(80)
21     webserver.succeed("curl --fail -si http://localhost/alf | grep '^Location:.*/alf'")
22     webserver.fail("curl --fail -si http://localhost/noredirect | grep '^Location:'")
23   '';