feat: adds gokapi proxy

This commit is contained in:
Ahwx 2024-09-26 13:19:05 +02:00
parent 95cf93eb48
commit fe29c7d368

View file

@ -0,0 +1,11 @@
{ lib, config, pkgs, ... }: {
services = {
nginx.virtualHosts."share.liv.town" = {
useACMEHost = "liv.town";
forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:53842";
};
};
};
}