Admins will be upgrading ORNL GitLab Servers on Saturday, 16 May 2026, from 7 AM until 11 AM EST. Repositories will experience intermittent outages during this time.
Timeout for establishing a new TCP connection to your origin server. This excludes the time taken to establish TLS, which is controlled by [https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/configuration/local-management/ingress/#tlstimeout](tlsTimeout).
'';
};
tlsTimeout=mkOption{
type=withtypes;nullOrstr;
default=null;
example="10s";
description=lib.mdDoc''
Timeout for completing a TLS handshake to your origin server, if you have chosen to connect Tunnel to an HTTPS server.
'';
};
tcpKeepAlive=mkOption{
type=withtypes;nullOrstr;
default=null;
example="30s";
description=lib.mdDoc''
The timeout after which a TCP keepalive packet is sent on a connection between Tunnel and the origin server.
'';
};
noHappyEyeballs=mkOption{
type=withtypes;nullOrbool;
default=null;
example=false;
description=lib.mdDoc''
Disable the “happy eyeballs” algorithm for IPv4/IPv6 fallback if your local network has misconfigured one of the protocols.
'';
};
keepAliveConnections=mkOption{
type=withtypes;nullOrint;
default=null;
example=100;
description=lib.mdDoc''
Maximum number of idle keepalive connections between Tunnel and your origin. This does not restrict the total number of concurrent connections.
'';
};
keepAliveTimeout=mkOption{
type=withtypes;nullOrstr;
default=null;
example="1m30s";
description=lib.mdDoc''
Timeout after which an idle keepalive connection can be discarded.
'';
};
httpHostHeader=mkOption{
type=withtypes;nullOrstr;
default=null;
example="";
description=lib.mdDoc''
Sets the HTTP `Host` header on requests sent to the local service.
'';
};
originServerName=mkOption{
type=withtypes;nullOrstr;
default=null;
example="";
description=lib.mdDoc''
Hostname that `cloudflared` should expect from your origin server certificate.
'';
};
caPool=mkOption{
type=withtypes;nullOr(eitherstrpath);
default=null;
example="";
description=lib.mdDoc''
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=mkOption{
type=withtypes;nullOrbool;
default=null;
example=false;
description=lib.mdDoc''
Disables TLS verification of the certificate presented by your origin. Will allow any certificate from the origin to be accepted.
'';
};
disableChunkedEncoding=mkOption{
type=withtypes;nullOrbool;
default=null;
example=false;
description=lib.mdDoc''
Disables chunked transfer encoding. Useful if you are running a WSGI server.
'';
};
proxyAddress=mkOption{
type=withtypes;nullOrstr;
default=null;
example="127.0.0.1";
description=lib.mdDoc''
`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=mkOption{
type=withtypes;nullOrint;
default=null;
example=0;
description=lib.mdDoc''
`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=mkOption{
type=withtypes;nullOr(enum["""socks"]);
default=null;
example="";
description=lib.mdDoc''
`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 [https://developers.cloudflare.com/cloudflare-one/tutorials/kubectl/](tutorial on connecting through Cloudflare Access using kubectl) for more information.
description=lib.mdDoc"User account under which Cloudflared runs.";
};
group=mkOption{
type=types.str;
default="cloudflared";
description=lib.mdDoc"Group under which cloudflared runs.";
};
package=mkOption{
type=types.package;
default=pkgs.cloudflared;
defaultText="pkgs.cloudflared";
description=lib.mdDoc"The package to use for Cloudflared.";
};
tunnels=mkOption{
description=lib.mdDoc''
Cloudflare tunnels.
'';
type=types.attrsOf(types.submodule({name,...}:{
options={
inheritoriginRequest;
credentialsFile=mkOption{
type=withtypes;nullOrstr;
default=null;
description=lib.mdDoc''
Credential file.
See [https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/tunnel-useful-terms/#credentials-file](Credentials file).
'';
};
warp-routing={
enabled=mkOption{
type=withtypes;nullOrbool;
default=null;
description=lib.mdDoc''
Enable warp routing.
See [https://developers.cloudflare.com/cloudflare-one/tutorials/warp-to-tunnel/](Connect from WARP to a private network on Cloudflare using Cloudflare Tunnel).
See [https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/configuration/local-management/ingress/#supported-protocols](Supported protocols).
'';
example="http://localhost:80, tcp://localhost:8000, unix:/home/production/echo.sock, hello_world or http_status:404";
};
path=mkOption{
type=withtypes;nullOrstr;
default=null;
description=lib.mdDoc''
Path filter.
If not specified, all paths will be matched.
'';
example="/*.(jpg|png|css|js)";
};
};
})));
default={};
description=lib.mdDoc''
Ingress rules.
See [https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/configuration/local-management/ingress/](Ingress rules).