15 lines
303 B
Nix
15 lines
303 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
services.nginx.virtualHosts."ctf.feal.no" = {
|
|
locations = {
|
|
"/".return = "302 https://www.feal.no/";
|
|
"/cc/" = {
|
|
alias = "${pkgs.cyberchef}/share/cyberchef/";
|
|
index = "index.html";
|
|
};
|
|
"= /cc".return = "302 /cc/";
|
|
};
|
|
};
|
|
}
|