nixosTests.caddy: update to v2

- Update configuration syntax
- Add filalex77 as a maintainer
This commit is contained in:
Oleksii Filonenko 2020-05-08 09:39:24 +00:00 committed by Sylvain Fankhauser
parent d71cadacd9
commit 06d2d84519
No known key found for this signature in database
GPG key ID: 4228AB9EC0612ADA

View file

@ -1,7 +1,7 @@
import ./make-test-python.nix ({ pkgs, ... }: {
name = "caddy";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ xfix ];
maintainers = [ xfix filalex77 ];
};
nodes = {
@ -9,9 +9,9 @@ import ./make-test-python.nix ({ pkgs, ... }: {
services.caddy.enable = true;
services.caddy.config = ''
http://localhost {
gzip
encode gzip
root ${
root * ${
pkgs.runCommand "testdir" {} ''
mkdir "$out"
echo hello world > "$out/example.html"
@ -23,9 +23,9 @@ import ./make-test-python.nix ({ pkgs, ... }: {
specialisation.etag.configuration = {
services.caddy.config = lib.mkForce ''
http://localhost {
gzip
encode gzip
root ${
root * ${
pkgs.runCommand "testdir2" {} ''
mkdir "$out"
echo changed > "$out/example.html"