1
0
Fork 0
NixOS/hosts/greatyamada/services/nginx.nix
2025-02-16 17:14:00 +01:00

13 lines
265 B
Nix

{ ... }: {
services.nginx = {
enable = true;
virtualHosts = {
"rcia.dev" = {
forceSSL = true;
enableACME = true;
serverAliases = [ "*.rcia.dev" ];
# locations."/" = { root = /var/www/public; };
};
};
};
}