configuration.nix/hosts/rico1/services/frpc.nix
2024-01-04 21:51:16 +05:30

19 lines
368 B
Nix

{ secrets, ... }: {
services.frp = {
enable = true;
role = "client";
settings = {
common = {
inherit (secrets.frp_config) server_addr token;
server_port = 7000;
authentication_method = "token";
};
"ssh.rico1" = {
type = "tcp";
local_port = 22;
remote_port = 6001;
};
};
};
}