9 lines
166 B
Nix
9 lines
166 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.nginx.virtualHosts."oops.t9e.me" = {
|
|
forceSSL = true;
|
|
enableACME = true;
|
|
root = "/var/www/oopsidentify/dist";
|
|
};
|
|
}
|