feat: adds proxy for sharkey

This commit is contained in:
Ahwx 2024-09-26 13:17:35 +02:00
parent f368354614
commit 3f20418fa5

View file

@ -0,0 +1,12 @@
{ lib, config, pkgs, ... }:
{
services = {
nginx.virtualHosts."quack.social" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:3000";
};
};
};
}