nixos-config/modules/services/gokapi.nix

12 lines
237 B
Nix
Raw Normal View History

2024-09-26 13:19:05 +02:00
{ lib, config, pkgs, ... }: {
services = {
nginx.virtualHosts."share.liv.town" = {
useACMEHost = "liv.town";
forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:53842";
};
};
};
}