configuration.nix/hosts/rico2/services/frpc.nix
2023-10-28 05:12:08 +05:30

62 lines
1.2 KiB
Nix

{
pkgs,
secrets,
...
}: let
inherit (secrets) frp_config;
in {
services.frp = {
enable = true;
role = "client";
settings = {
"common" = {
server_addr = "${frp_config.ip}";
server_port = 7000;
authentication_method = "token";
token = "${frp_config.token}";
};
"ssh.rico2" = {
type = "tcp";
local_port = 22;
remote_port = 6002;
};
"http.adtya.xyz" = {
type = "http";
custom_domains = "adtya.xyz";
local_port = 80;
};
"https.adtya.xyz" = {
type = "https";
custom_domains = "adtya.xyz";
local_port = 443;
};
"http.www.adtya.xyz" = {
type = "http";
custom_domains = "www.adtya.xyz";
local_port = 80;
};
"https.www.adtya.xyz" = {
type = "https";
custom_domains = "www.adtya.xyz";
local_port = 443;
};
"http.if3.adtya.xyz" = {
type = "http";
custom_domains = "if3.adtya.xyz";
local_port = 80;
};
"https.if3.adtya.xyz" = {
type = "https";
custom_domains = "if3.adtya.xyz";
local_port = 443;
};
};
};
}