nix-configs/web/tildecafe-com.nix

17 lines
261 B
Nix

{ config, pkgs, ... }:
{
services.nginx = {
enable = true;
virtualHosts = {
"tildecafe.com" = {
forceSSL = true;
enableACME = true;
locations."/" = {
root = "/var/www/tildecafe";
};
};
};
};
}