13 lines
245 B
Nix
13 lines
245 B
Nix
|
{...}: {
|
||
|
services.nginx.virtualHosts."tablet-dev.owo.monster" = {
|
||
|
forceSSL = true;
|
||
|
enableACME = true;
|
||
|
locations = {
|
||
|
"/" = {
|
||
|
proxyPass = "http://10.69.42.2:8088";
|
||
|
proxyWebsockets = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|