Easy Proxy is a simple proxy server designed to provide essential features for network traffic management and proxying. It is based on Pingora.
To install or upgrade Easy Proxy, run the following command:
curl -H 'Cache-Control: no-cache' -fsSL https://raw.githubusercontent.com/AssetsArt/easy-proxy/main/scripts/install.sh | bash
To uninstall Easy Proxy, execute:
curl -H 'Cache-Control: no-cache' -fsSL https://raw.githubusercontent.com/AssetsArt/easy-proxy/main/scripts/uninstall.sh | bash
Easy Proxy supports the following features:
- HTTP
- HTTPS
- Custom Certificates
- ACME (Automated Certificate Management Environment)
- HTTP
- HTTPS
- WASM (WebAssembly)
- FFI (Foreign Function Interface)
- Header-based Matching
- Host-based Matching
- Exact Match
- Prefix Match
- Add Headers
- Remove Headers
- Rewrite Path
- Round Robin
- Random
- Consistent Hashing
- Weighted Ketama Consistent Hashing | Pingora - Consistent
- Weighted
- FFI (Foreign Function Interface)
- WASM (WebAssembly)
- Health Checking
- Logging and Monitoring
proxy:
http: "0.0.0.0:80"
https: "0.0.0.0:443"
config_dir: "/etc/easy-proxy/proxy"
# Optional
acme_store: "/etc/easy-proxy/acme.json" # Automatically generated
pingora:
# Refer to Pingora's daemon documentation: https://github.com/cloudflare/pingora/blob/main/docs/user_guide/daemon.md
daemon: true
# Refer to Pingora's configuration documentation: https://github.com/cloudflare/pingora/blob/main/docs/user_guide/conf.md
threads: 6
# Optional settings (uncomment to use)
# upstream_keepalive_pool_size: 20
# work_stealing: true
# error_log: /var/log/pingora/error.log
# pid_file: /run/pingora.pid
# upgrade_sock: /tmp/pingora_upgrade.sock
# user: nobody
# group: webusers
grace_period_seconds: 60
graceful_shutdown_timeout_seconds: 10
# ca_file: /etc/ssl/certs/ca-certificates.crt
# my-config.yaml
# Select the service to be proxied based on the specified header
header_selector: x-easy-proxy-svc
# Services to be proxied
services:
- name: my-service
type: http
algorithm: round_robin # Options: round_robin, random, consistent, weighted
endpoints:
- ip: 127.0.0.1
port: 3000
weight: 10 # Optional
- ip: 127.0.0.1
port: 3001
weight: 1 # Optional
# TLS Configuration
tls:
- name: my-tls
type: custom # Options: acme, custom
# If type is 'acme', the following fields are required:
# acme:
# provider: letsencrypt # Options: letsencrypt, buypass (default: letsencrypt)
# email: admin@domain.com
key: /etc/easy-proxy/ssl/localhost.key
cert: /etc/easy-proxy/ssl/localhost.crt
# Optional chain certificates
# chain:
# - /etc/easy-proxy/ssl/chain.pem
# Routes to be proxied
routes:
- route:
type: header
value: service-1
name: my-route-header-1
paths:
- pathType: Exact
path: /
service:
rewrite: /rewrite
name: my-service
- route:
type: host
value: localhost
name: my-route-1
tls: # Optional TLS settings for this route
name: my-tls
redirect: true # Redirect to HTTPS (default: false)
remove_headers:
- cookie
add_headers:
- name: x-custom-header
value: "123"
- name: x-real-ip
value: "$CLIENT_IP"
paths:
- pathType: Exact
path: /
service:
name: my-service
- pathType: Exact
path: /api/v1
service:
rewrite: /rewrite
name: my-service
- pathType: Prefix
path: /api/prefix
service:
rewrite: /prefix
name: my-service
You can test and reload the service using the following commands:
$ easy-proxy -t # Test the configuration file
$ easy-proxy -r # Reload the configuration file
Manage the Easy Proxy service with the following service
commands:
$ service easy-proxy start
$ service easy-proxy stop
$ service easy-proxy restart
# Restart includes the global configuration and ensures zero downtime
# Note: `grace_period_seconds` and `graceful_shutdown_timeout_seconds` are used to wait for existing connections to close
$ service easy-proxy reload # Reload the configuration file without including the global configuration
$ service easy-proxy status
Details:
- Restart: Applies the global configuration and ensures zero downtime by gracefully handling existing connections.
- Reload: Reloads the configuration file without affecting the global configuration, allowing for quick updates without restarting the entire service.
If you prefer to build Easy Proxy from source, follow these steps:
-
Clone the Repository:
git clone https://github.com/AssetsArt/easy-proxy.git
-
Change the Working Directory:
cd easy-proxy
-
Build the Application:
cargo build --release
-
Run the Application:
# EASY_PROXY_CONF is the environment variable to set the configuration file path EASY_PROXY_CONF=.config/easy-proxy.yaml ./target/release/easy-proxy
Note: Ensure that you have Rust installed on your system to build Easy Proxy from source.