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

12 lines
381 B
Nix
Raw Normal View History

2021-10-16 20:36:32 +03:00
{ 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";
};
}