1
0
Fork 0
nixfiles/hosts/web-2/bula22.nix

17 lines
293 B
Nix

{ ... }:
{
services.nginx.virtualHosts = {
"bula22.de" = {
enableACME = true;
forceSSL = true;
locations."/" = {
return = ''200 "VCP Bundeslager 2022"'';
extraConfig = ''
add_header Content-Type text/plain;
'';
};
};
};
}