18 lines
335 B
Nix
18 lines
335 B
Nix
|
{
|
||
|
|
||
|
# users.users.eric = {
|
||
|
# isNormalUser = true;
|
||
|
# description = "Eric Villnow";
|
||
|
# openssh.authorizedKeys.keys = [
|
||
|
# # TODO
|
||
|
# ];
|
||
|
# };
|
||
|
|
||
|
services.caddy.virtualHosts."nas.ericvillnow.com" = {
|
||
|
serverAliases = ["nas.vill.how"];
|
||
|
extraConfig = ''
|
||
|
reverse_proxy http://192.168.10.11:80
|
||
|
'';
|
||
|
};
|
||
|
}
|