12 lines
240 B
Nix
12 lines
240 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
services.nginx.virtualHosts."gallery.${config.domains.jim1}" = {
|
||
|
enableACME = true;
|
||
|
forceSSL = true;
|
||
|
locations."/" = {
|
||
|
proxyPass = "http://127.0.0.1:2342";
|
||
|
proxyWebsockets = true;
|
||
|
};
|
||
|
};
|
||
|
}
|