This commit is contained in:
sadan 2025-02-23 14:31:53 -05:00
parent 54dea756ff
commit 530dbe25b9
No known key found for this signature in database
5 changed files with 78 additions and 1 deletions

View file

@ -0,0 +1,18 @@
{ ... }:
{
services = {
nginx = {
virtualHosts = {
"vw.sadan.zip" = {
forceSSL = true;
useACMEHost = "sadan.zip";
locations = {
"/" = {
proxyPass = "http://localhost:3231";
};
};
};
};
};
};
}