17 lines
353 B
Nix
17 lines
353 B
Nix
{
|
|
services.nginx.virtualHosts = {
|
|
"brennende.autos" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
|
|
locations."~ .*".return = "303 'https://iv.sbruder.xyz/watch?v=ojToYs6nCnk&t=1684'";
|
|
};
|
|
"www.brennende.autos" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
|
|
globalRedirect = "https://brennende.autos/";
|
|
};
|
|
};
|
|
}
|