depot/hosts/VEGAS/services/jokes/default.nix

11 lines
326 B
Nix
Raw Normal View History

2023-08-31 01:55:45 +03:00
{ depot, ... }:
with depot.lib.nginx.mappers;
with depot.lib.nginx.vhosts;
2021-10-16 20:36:32 +03:00
{
services.nginx.virtualHosts = mapSubdomains {
"bone-ds-dc.com-ldap" = static "/srv/storage/www/bone-meme/dist";
"rzentrale" = static "/srv/storage/www/rzentrale";
"wunschnachricht" = static "/srv/storage/www/wunschnachricht";
};
}