remove dead code

This commit is contained in:
Grigory Shipunov 2023-09-03 21:22:14 +02:00
parent adc9b57fe7
commit 1cea3dbf59

View file

@ -1,22 +0,0 @@
{ config, ... }: {
services.nginx.virtualHosts = {
"dd-ix.net" = {
enableACME = true;
forceSSL = true;
locations."/" = {
extraConfig = ''
return 307 https://c3d2.de;
'';
};
};
"www.dd-ix.net" = {
enableACME = true;
forceSSL = true;
locations."/" = {
extraConfig = ''
return 307 https://c3d2.de;
'';
};
};
};
}