1
0
Fork 0
NixOS/hosts/greatyamada/services/nginx.nix

11 lines
200 B
Nix

{ pkgs, ... }: {
services.nginx = {
enable = true;
virtualHosts = {
"rcia.dev" = {
forceSSL = true;
locations."/" = { root = /var/www/public; };
};
};
};
}