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

26 lines
510 B
Nix

{ ... }:
{
services.nginx.virtualHosts = {
"bula22.de" = {
enableACME = true;
forceSSL = true;
locations."/" = {
return = ''200 '
<html>
<head>
<title>VCP Bundeslager 2022</title>
</head>
<body>
<img src="https://p619357.mittwaldserver.info/webcam/current.jpg">
</body>
</html>'
'';
extraConfig = ''
add_header Content-Type text/html;
'';
};
};
};
}