omniflake/system/web-server/oopsidentify.nix
2025-07-03 23:56:40 +02:00

9 lines
166 B
Nix

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