A flexible reverse proxy for Cloudflare Access applications.
This tool allows you to proxy multiple Cloudflare Access protected applications to your local machine, with easy configuration via command-line flags, a configuration file, or environment variables.
- Multiple Endpoints: Proxy multiple applications simultaneously.
- Flexible Configuration: Use command-line flags, a configuration file (YAML, JSON, etc.), or environment variables.
- TLS Configuration: Option to skip TLS verification for non trusted certificates.
The binary can be downloaded from the GitHub Releases page.
Alternatively, you can build from source:
go build -o cloudflared-proxy .The primary command is run, which starts the reverse proxies.
./cloudflared-proxy run [flags]You can specify endpoints directly on the command line.
Endpoint Format: [LOCAL_PORT:]HOSTNAME[:DEST_PORT]
LOCAL_PORT: (Optional) The port on your local machine (default:8888).HOSTNAME: (Required) The destination hostname.DEST_PORT: (Optional) The destination port (default:443).
Examples:
# Proxy example.com to localhost:8888
./cloudflared-proxy run -e example.com
# Proxy example.com to localhost:9000
./cloudflared-proxy run -e 9000:example.com
# Proxy example.com:8443 to localhost:8888
./cloudflared-proxy run -e example.com:8443
# Proxy example.com:8443 to localhost:9000
./cloudflared-proxy run -e 9000:example.com:8443
# Proxy multiple endpoints
./cloudflared-proxy run -e example1.com,9001:example2.com
# or
./cloudflared-proxy run -e example1.com -e 9001:example2.com
# Skip TLS verification
./cloudflared-proxy run -e example.com --skip-tlsFor a more persistent setup, you can use a configuration file. By default, cloudflared-proxy looks for a config file in $HOME/.config/cloudflared-proxy/. You can specify a different file with the --config or -c flag.
Example config.yaml:
proxies:
- hostname: "app1.your-domain.com"
localPort: 8080
- hostname: "app2.your-domain.com"
localPort: 8081
destinationPort: 8443
- hostname: "app3.your-domain.com"
skipTLS: trueWith a configuration file, you can start the proxies with a simple command:
./cloudflared-proxy runOr with a custom config file path:
./cloudflared-proxy run -c /path/to/your/config.yamlThe tool can be configured using a configuration file or command-line flags. Please note that for defining proxy endpoints, these methods are mutually exclusive.
Configuration is loaded from the following sources:
- Configuration File:
- By default, the tool looks for a
config.yamlfile in$HOME/.config/cloudflared-proxy/. - A different configuration file can be specified using the
--configor-cflag. If a file is specified with this flag and it is not found, the program will exit with an error.
- By default, the tool looks for a
- Command-Line Flags:
- Endpoints can be specified directly using the
--endpointsor-eflag. - If endpoints are provided via flags, any configuration file will be ignored for endpoint definitions.
- Endpoints can be specified directly using the
For more details on Cloudflare Tunnels, see the official documentation.

