mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
11 lines
237 B
Nix
11 lines
237 B
Nix
{ lib, config, pkgs, ... }: {
|
|
services = {
|
|
nginx.virtualHosts."share.liv.town" = {
|
|
useACMEHost = "liv.town";
|
|
forceSSL = true;
|
|
locations."/" = {
|
|
proxyPass = "http://localhost:53842";
|
|
};
|
|
};
|
|
};
|
|
}
|