deployment/paper: init
This commit is contained in:
parent
3bb9bef891
commit
0d1a8c86cc
15
2configs/deployment/paper.nix
Normal file
15
2configs/deployment/paper.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in a new issue