Simon Bruder
10b8d432d5
This applies the REUSE specification to the repository, so the licensing information can be tracked for every file individually.
28 lines
607 B
Nix
28 lines
607 B
Nix
# SPDX-FileCopyrightText: 2024 Simon Bruder <simon@sbruder.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
{
|
|
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/";
|
|
};
|
|
};
|
|
|
|
sbruder.static-webserver.vhosts = {
|
|
"psycho-power-papagei.de" = {
|
|
user.name = "papagei";
|
|
imprint.enable = true;
|
|
};
|
|
};
|
|
}
|