deployment/paper: init

This commit is contained in:
makefu 2024-01-15 22:11:59 +01:00
parent 3bb9bef891
commit 0d1a8c86cc
No known key found for this signature in database
GPG key ID: 36F7711F3FC0F225

View file

@ -0,0 +1,15 @@
{config, ... }:
{
services.nginx = {
enable = lib.mkDefault true;
virtualHosts."work.euer.krebsco.de" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://omo.r:28981";
proxyWebsockets = true;
};
};
};
}