refactor(eientei): move hass nginx configuration
This commit is contained in:
parent
adc27a77ca
commit
37c19421d9
|
@ -19,7 +19,19 @@
|
|||
];
|
||||
};
|
||||
|
||||
nixpkgs.config.permittedInsecurePackages = [ "openssl-1.1.1w" ];
|
||||
services.nginx.virtualHosts."home.514fpv.io" = {
|
||||
useACMEHost = ".514fpv.io";
|
||||
addSSL = true;
|
||||
extraConfig = ''
|
||||
proxy_buffering off;
|
||||
'';
|
||||
locations."/" = {
|
||||
proxyPass = "http://127.0.0.1:8123";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
|
||||
global.fs.zfs.mountpoints."/nix/persist/service/hass" = "service/hass";
|
||||
|
||||
nixpkgs.config.permittedInsecurePackages = [ "openssl-1.1.1w" ];
|
||||
}
|
||||
|
|
|
@ -17,18 +17,6 @@
|
|||
useACMEHost = ".514fpv.io";
|
||||
extraConfig = "return 444;";
|
||||
};
|
||||
|
||||
"home.514fpv.io" = {
|
||||
useACMEHost = ".514fpv.io";
|
||||
addSSL = true;
|
||||
extraConfig = ''
|
||||
proxy_buffering off;
|
||||
'';
|
||||
locations."/" = {
|
||||
proxyPass = "http://127.0.0.1:8123";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue