1
0
Fork 0

hosts/web-2: add drop.clerie.de shortlink for sending files

This commit is contained in:
clerie 2023-02-17 22:42:13 +01:00
parent 5649fd8b91
commit 7d04db9809
2 changed files with 14 additions and 0 deletions

View File

@ -7,6 +7,7 @@
./bubblesort.nix
./bula22.nix
./clerie.nix
./drop.nix
./gitea.nix
./iot-data.nix
./ip.nix

13
hosts/web-2/drop.nix Normal file
View File

@ -0,0 +1,13 @@
{ ... }:
{
services.nginx.virtualHosts = {
"drop.clerie.de" = {
enableACME = true;
forceSSL = true;
locations."= /" = {
return = ''301 https://cloud.fem.tu-ilmenau.de/s/dXPSNLb25rxSj3z'';
};
};
};
}