mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00

There was a typo in the systemd service definition for cloudflared which meant that the cert.pem file was not being correctly exposed.
388 lines
13 KiB
Nix
388 lines
13 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.cloudflared;
|
|
|
|
certificateFile = lib.mkOption {
|
|
type = with lib.types; nullOr path;
|
|
description = ''
|
|
Account certificate file, necessary to create, delete and manage tunnels. It can be obtained by running `cloudflared login`.
|
|
|
|
Note that this is **necessary** for a fully declarative set up, as routes can not otherwise be created outside of the Cloudflare interface.
|
|
|
|
See [Cert.pem](https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/tunnel-useful-terms/#certpem) for information about the file, and [Tunnel permissions](https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/do-more-with-tunnels/local-management/tunnel-permissions/) for a comparison between the account certificate and the tunnel credentials file.
|
|
'';
|
|
default = null;
|
|
};
|
|
|
|
originRequest = {
|
|
connectTimeout = lib.mkOption {
|
|
type = with lib.types; nullOr str;
|
|
default = null;
|
|
example = "30s";
|
|
description = ''
|
|
Timeout for establishing a new TCP connection to your origin server. This excludes the time taken to establish TLS, which is controlled by [tlsTimeout](https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/configuration/local-management/ingress/#tlstimeout).
|
|
'';
|
|
};
|
|
|
|
tlsTimeout = lib.mkOption {
|
|
type = with lib.types; nullOr str;
|
|
default = null;
|
|
example = "10s";
|
|
description = ''
|
|
Timeout for completing a TLS handshake to your origin server, if you have chosen to connect Tunnel to an HTTPS server.
|
|
'';
|
|
};
|
|
|
|
tcpKeepAlive = lib.mkOption {
|
|
type = with lib.types; nullOr str;
|
|
default = null;
|
|
example = "30s";
|
|
description = ''
|
|
The timeout after which a TCP keepalive packet is sent on a connection between Tunnel and the origin server.
|
|
'';
|
|
};
|
|
|
|
noHappyEyeballs = lib.mkOption {
|
|
type = with lib.types; nullOr bool;
|
|
default = null;
|
|
example = false;
|
|
description = ''
|
|
Disable the “happy eyeballs” algorithm for IPv4/IPv6 fallback if your local network has misconfigured one of the protocols.
|
|
'';
|
|
};
|
|
|
|
keepAliveConnections = lib.mkOption {
|
|
type = with lib.types; nullOr int;
|
|
default = null;
|
|
example = 100;
|
|
description = ''
|
|
Maximum number of idle keepalive connections between Tunnel and your origin. This does not restrict the total number of concurrent connections.
|
|
'';
|
|
};
|
|
|
|
keepAliveTimeout = lib.mkOption {
|
|
type = with lib.types; nullOr str;
|
|
default = null;
|
|
example = "1m30s";
|
|
description = ''
|
|
Timeout after which an idle keepalive connection can be discarded.
|
|
'';
|
|
};
|
|
|
|
httpHostHeader = lib.mkOption {
|
|
type = with lib.types; nullOr str;
|
|
default = null;
|
|
example = "";
|
|
description = ''
|
|
Sets the HTTP `Host` header on requests sent to the local service.
|
|
'';
|
|
};
|
|
|
|
originServerName = lib.mkOption {
|
|
type = with lib.types; nullOr str;
|
|
default = null;
|
|
example = "";
|
|
description = ''
|
|
Hostname that `cloudflared` should expect from your origin server certificate.
|
|
'';
|
|
};
|
|
|
|
caPool = lib.mkOption {
|
|
type = with lib.types; nullOr (either str path);
|
|
default = null;
|
|
example = "";
|
|
description = ''
|
|
Path to the certificate authority (CA) for the certificate of your origin. This option should be used only if your certificate is not signed by Cloudflare.
|
|
'';
|
|
};
|
|
|
|
noTLSVerify = lib.mkOption {
|
|
type = with lib.types; nullOr bool;
|
|
default = null;
|
|
example = false;
|
|
description = ''
|
|
Disables TLS verification of the certificate presented by your origin. Will allow any certificate from the origin to be accepted.
|
|
'';
|
|
};
|
|
|
|
disableChunkedEncoding = lib.mkOption {
|
|
type = with lib.types; nullOr bool;
|
|
default = null;
|
|
example = false;
|
|
description = ''
|
|
Disables chunked transfer encoding. Useful if you are running a WSGI server.
|
|
'';
|
|
};
|
|
|
|
proxyAddress = lib.mkOption {
|
|
type = with lib.types; nullOr str;
|
|
default = null;
|
|
example = "127.0.0.1";
|
|
description = ''
|
|
`cloudflared` starts a proxy server to translate HTTP traffic into TCP when proxying, for example, SSH or RDP. This configures the listen address for that proxy.
|
|
'';
|
|
};
|
|
|
|
proxyPort = lib.mkOption {
|
|
type = with lib.types; nullOr int;
|
|
default = null;
|
|
example = 0;
|
|
description = ''
|
|
`cloudflared` starts a proxy server to translate HTTP traffic into TCP when proxying, for example, SSH or RDP. This configures the listen port for that proxy. If set to zero, an unused port will randomly be chosen.
|
|
'';
|
|
};
|
|
|
|
proxyType = lib.mkOption {
|
|
type =
|
|
with lib.types;
|
|
nullOr (enum [
|
|
""
|
|
"socks"
|
|
]);
|
|
default = null;
|
|
example = "";
|
|
description = ''
|
|
`cloudflared` starts a proxy server to translate HTTP traffic into TCP when proxying, for example, SSH or RDP. This configures what type of proxy will be started. Valid options are:
|
|
|
|
- `""` for the regular proxy
|
|
- `"socks"` for a SOCKS5 proxy. Refer to the [tutorial on connecting through Cloudflare Access using kubectl](https://developers.cloudflare.com/cloudflare-one/tutorials/kubectl/) for more information.
|
|
'';
|
|
};
|
|
};
|
|
in
|
|
{
|
|
imports = [
|
|
(lib.mkRemovedOptionModule
|
|
[
|
|
"services"
|
|
"cloudflared"
|
|
"user"
|
|
]
|
|
''
|
|
Cloudflared now uses a dynamic user, and this option no longer has any effect.
|
|
|
|
If the user is still necessary, please define it manually using users.users.cloudflared.
|
|
''
|
|
)
|
|
|
|
(lib.mkRemovedOptionModule
|
|
[
|
|
"services"
|
|
"cloudflared"
|
|
"group"
|
|
]
|
|
''
|
|
Cloudflared now uses a dynamic user, and this option no longer has any effect.
|
|
|
|
If the group is still necessary, please define it manually using users.groups.cloudflared.
|
|
''
|
|
)
|
|
];
|
|
|
|
options.services.cloudflared = {
|
|
inherit certificateFile;
|
|
|
|
enable = lib.mkEnableOption "Cloudflare Tunnel client daemon (formerly Argo Tunnel)";
|
|
|
|
package = lib.mkPackageOption pkgs "cloudflared" { };
|
|
|
|
tunnels = lib.mkOption {
|
|
description = ''
|
|
Cloudflare tunnels.
|
|
'';
|
|
type = lib.types.attrsOf (
|
|
lib.types.submodule (
|
|
{ name, ... }:
|
|
{
|
|
options = {
|
|
inherit certificateFile originRequest;
|
|
|
|
credentialsFile = lib.mkOption {
|
|
type = lib.types.path;
|
|
description = ''
|
|
Credential file.
|
|
|
|
See [Credentials file](https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/tunnel-useful-terms/#credentials-file).
|
|
'';
|
|
};
|
|
|
|
warp-routing = {
|
|
enabled = lib.mkOption {
|
|
type = with lib.types; nullOr bool;
|
|
default = null;
|
|
description = ''
|
|
Enable warp routing.
|
|
|
|
See [Connect from WARP to a private network on Cloudflare using Cloudflare Tunnel](https://developers.cloudflare.com/cloudflare-one/tutorials/warp-to-tunnel/).
|
|
'';
|
|
};
|
|
};
|
|
|
|
default = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = ''
|
|
Catch-all service if no ingress matches.
|
|
|
|
See `service`.
|
|
'';
|
|
example = "http_status:404";
|
|
};
|
|
|
|
ingress = lib.mkOption {
|
|
type =
|
|
with lib.types;
|
|
attrsOf (
|
|
either str (
|
|
submodule (
|
|
{ hostname, ... }:
|
|
{
|
|
options = {
|
|
inherit originRequest;
|
|
|
|
service = lib.mkOption {
|
|
type = with lib.types; nullOr str;
|
|
default = null;
|
|
description = ''
|
|
Service to pass the traffic.
|
|
|
|
See [Supported protocols](https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/configuration/local-management/ingress/#supported-protocols).
|
|
'';
|
|
example = "http://localhost:80, tcp://localhost:8000, unix:/home/production/echo.sock, hello_world or http_status:404";
|
|
};
|
|
|
|
path = lib.mkOption {
|
|
type = with lib.types; nullOr str;
|
|
default = null;
|
|
description = ''
|
|
Path filter.
|
|
|
|
If not specified, all paths will be matched.
|
|
'';
|
|
example = "/*.(jpg|png|css|js)";
|
|
};
|
|
|
|
};
|
|
}
|
|
)
|
|
)
|
|
);
|
|
default = { };
|
|
description = ''
|
|
Ingress rules.
|
|
|
|
See [Ingress rules](https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/configuration/local-management/ingress/).
|
|
'';
|
|
example = {
|
|
"*.domain.com" = "http://localhost:80";
|
|
"*.anotherone.com" = "http://localhost:80";
|
|
};
|
|
};
|
|
};
|
|
}
|
|
)
|
|
);
|
|
|
|
default = { };
|
|
example = {
|
|
"00000000-0000-0000-0000-000000000000" = {
|
|
credentialsFile = "/tmp/test";
|
|
ingress = {
|
|
"*.domain1.com" = {
|
|
service = "http://localhost:80";
|
|
};
|
|
};
|
|
default = "http_status:404";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
systemd.targets = lib.mapAttrs' (
|
|
name: tunnel:
|
|
lib.nameValuePair "cloudflared-tunnel-${name}" {
|
|
description = "Cloudflare tunnel '${name}' target";
|
|
requires = [ "cloudflared-tunnel-${name}.service" ];
|
|
after = [ "cloudflared-tunnel-${name}.service" ];
|
|
unitConfig.StopWhenUnneeded = true;
|
|
}
|
|
) config.services.cloudflared.tunnels;
|
|
|
|
systemd.services = lib.mapAttrs' (
|
|
name: tunnel:
|
|
let
|
|
filterConfig = lib.attrsets.filterAttrsRecursive (
|
|
_: v:
|
|
!builtins.elem v [
|
|
null
|
|
[ ]
|
|
{ }
|
|
]
|
|
);
|
|
|
|
filterIngressSet = lib.filterAttrs (_: v: builtins.typeOf v == "set");
|
|
filterIngressStr = lib.filterAttrs (_: v: builtins.typeOf v == "string");
|
|
|
|
ingressesSet = filterIngressSet tunnel.ingress;
|
|
ingressesStr = filterIngressStr tunnel.ingress;
|
|
|
|
fullConfig = filterConfig {
|
|
tunnel = name;
|
|
credentials-file = "/run/credentials/cloudflared-tunnel-${name}.service/credentials.json";
|
|
warp-routing = filterConfig tunnel.warp-routing;
|
|
originRequest = filterConfig tunnel.originRequest;
|
|
ingress =
|
|
(map (
|
|
key:
|
|
{
|
|
hostname = key;
|
|
}
|
|
// lib.getAttr key (filterConfig (filterConfig ingressesSet))
|
|
) (lib.attrNames ingressesSet))
|
|
++ (map (key: {
|
|
hostname = key;
|
|
service = lib.getAttr key ingressesStr;
|
|
}) (lib.attrNames ingressesStr))
|
|
++ [ { service = tunnel.default; } ];
|
|
};
|
|
|
|
mkConfigFile = pkgs.writeText "cloudflared.yml" (builtins.toJSON fullConfig);
|
|
certFile = if (tunnel.certificateFile != null) then tunnel.certificateFile else cfg.certificateFile;
|
|
in
|
|
lib.nameValuePair "cloudflared-tunnel-${name}" {
|
|
after = [
|
|
"network.target"
|
|
"network-online.target"
|
|
];
|
|
wants = [
|
|
"network.target"
|
|
"network-online.target"
|
|
];
|
|
wantedBy = [ "multi-user.target" ];
|
|
serviceConfig = {
|
|
RuntimeDirectory = "cloudflared-tunnel-${name}";
|
|
RuntimeDirectoryMode = "0400";
|
|
LoadCredential = [
|
|
"credentials.json:${tunnel.credentialsFile}"
|
|
] ++ (lib.optional (certFile != null) "cert.pem:${certFile}");
|
|
|
|
ExecStart = "${cfg.package}/bin/cloudflared tunnel --config=${mkConfigFile} --no-autoupdate run";
|
|
Restart = "on-failure";
|
|
DynamicUser = true;
|
|
};
|
|
|
|
environment.TUNNEL_ORIGIN_CERT = lib.mkIf (certFile != null) ''%d/cert.pem'';
|
|
}
|
|
) config.services.cloudflared.tunnels;
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [
|
|
bbigras
|
|
anpin
|
|
];
|
|
}
|