mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-24 10:04:09 -05:00
10 lines
320 B
Nix
10 lines
320 B
Nix
{lib, ...}: {
|
|
services.nginx.virtualHosts."m7.rs" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
locations = lib.mapAttrs' (n: v: lib.nameValuePair "/l/${n}" {return = "302 ${v}$request_uri";}) {
|
|
"booletim" = "https://drive.google.com/uc?export=download&id=1cPemsZV3mUq9nfPMW1nKE7CssijMk7s0";
|
|
};
|
|
};
|
|
}
|