depot/hosts/VEGAS/services/jokes/default.nix
2022-01-14 22:49:38 +01:00

12 lines
381 B
Nix

{ config, lib, tools, ... }:
with tools.nginx.mappers;
with tools.nginx.vhosts;
{
services.nginx.virtualHosts = mapSubdomains {
"bone-ds-dc.com-ldap" = static "/srv/storage/www/bone-meme/dist";
"get" = simplePHP "/srv/storage/www/dietldb";
"rzentrale" = static "/srv/storage/www/rzentrale";
"wunschnachricht" = static "/srv/storage/www/wunschnachricht";
};
}