1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
931fe57cf2 Add readme 2023-03-22 23:08:09 +01:00
62d2e6429a hosts/web-2: proper redirects for imprint 2023-03-22 22:51:19 +01:00
3 changed files with 13 additions and 2 deletions

5
README.md Normal file
View File

@ -0,0 +1,5 @@
# clerie's nixfiles
This repository contains all the configuration for clerie's infrastructure.
[Build Status](https://hydra.clerie.de/jobset/nixfiles/nixfiles#tabs-jobs) | [Installer ISO](https://hydra.clerie.de/job/nixfiles/nixfiles/iso/latest)

View File

@ -9,10 +9,10 @@
return = ''301 https://clerie.de'';
};
locations."/impressum" = {
return = ''301 https://legal.clerie.de/#impressum'';
return = ''301 https://legal.clerie.de/impressum'';
};
locations."/datenschutz" = {
return = ''301 https://legal.clerie.de/#datenschutz'';
return = ''301 https://legal.clerie.de/datenschutz'';
};
};
};

View File

@ -10,6 +10,12 @@
rev = "c6900226e3107a2e370a32759d83db472ab5450d";
sha256 = "sha256-lOjbHqYc/85rjotwQ5Oj+MSWnDIfLx2w5mpiJkChbXU=";
};
locations."/impressum" = {
return = ''301 https://legal.clerie.de/#impressum'';
};
locations."/datenschutz" = {
return = ''301 https://legal.clerie.de/#datenschutz'';
};
};
};
}