All Projects → spccold → Xproxy

spccold / Xproxy

Licence: other
reverse proxy implement in java

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Xproxy

Tesla
Tesla is a gateway service that provides dynamic routing,waf,support spring cloud,gRPC,DUBBO and more.
Stars: ✭ 161 (+705%)
Mutual labels:  high-performance, gateway, netty4
Annon.api
Configurable API gateway that acts as a reverse proxy with a plugin system.
Stars: ✭ 306 (+1430%)
Mutual labels:  gateway, reverse-proxy
Infini Gateway
INFINI-GATEWAY(极限网关), a high performance and lightweight gateway written in golang, for elasticsearch and his friends.
Stars: ✭ 272 (+1260%)
Mutual labels:  gateway, reverse-proxy
Cicada
🚀 Fast lightweight HTTP service framework.
Stars: ✭ 851 (+4155%)
Mutual labels:  high-performance, netty4
Janusec
Janusec Application Gateway, Provides Fast and Secure Application Delivery. JANUSEC应用网关,提供快速、安全的应用交付。
Stars: ✭ 771 (+3755%)
Mutual labels:  gateway, reverse-proxy
ipns-link
Expose local http-server (web-app) through IPNS
Stars: ✭ 18 (-10%)
Mutual labels:  gateway, reverse-proxy
Pomerium
Pomerium is an identity-aware access proxy.
Stars: ✭ 2,860 (+14200%)
Mutual labels:  gateway, reverse-proxy
piccolo
Netty4长连接网关
Stars: ✭ 19 (-5%)
Mutual labels:  gateway, netty4
Jupiter
Jupiter是一款性能非常不错的, 轻量级的分布式服务框架
Stars: ✭ 1,372 (+6760%)
Mutual labels:  high-performance, netty4
Nuster
A high performance HTTP proxy cache server and RESTful NoSQL cache server based on HAProxy
Stars: ✭ 1,825 (+9025%)
Mutual labels:  high-performance, reverse-proxy
Katwebx
An extremely fast static web server and reverse proxy for the modern web.
Stars: ✭ 39 (+95%)
Mutual labels:  high-performance, reverse-proxy
Varnish Cache
Varnish Cache source code repository
Stars: ✭ 2,769 (+13745%)
Mutual labels:  high-performance, reverse-proxy
Haproxy
HAProxy Load Balancer's development branch (mirror of git.haproxy.org)
Stars: ✭ 2,463 (+12215%)
Mutual labels:  high-performance, reverse-proxy
gateway
A high-performance API Gateway with middlewares, supporting HTTP and gRPC protocols.
Stars: ✭ 520 (+2500%)
Mutual labels:  gateway, reverse-proxy
chirpstack-concentratord
Concentrator HAL daemon for LoRa gateways.
Stars: ✭ 53 (+165%)
Mutual labels:  gateway
darpc
DaRPC: Data Center Remote Procedure Call
Stars: ✭ 49 (+145%)
Mutual labels:  high-performance
devicehive-python
DeviceHive Python library
Stars: ✭ 29 (+45%)
Mutual labels:  gateway
Telephone-Remote-Control
No description or website provided.
Stars: ✭ 19 (-5%)
Mutual labels:  gateway
kwang
High Performance Kotlin Native Web Framework based on Lwan
Stars: ✭ 59 (+195%)
Mutual labels:  high-performance
pacxx-llvm
Programming Accelerators with C++ (PACXX)
Stars: ✭ 57 (+185%)
Mutual labels:  high-performance

Xproxy

Mini Nginx, High Performance ^-^ !

config

# accept connections on the specified port
listen: 8000

# keepalive timeout for all downstream connetions, second
keepalive_timeout: 65

# netty worker threads(auto = cpu cores)
worker_threads: auto

# max connections per worker
worker_connections: 102400

# all virtual hosts configurations
servers: 
  localhost1: 
    -
      path: /*
      proxy_pass: http://localhost1_pool
  localhost2: 
    -
      path: /*
      proxy_pass: http://localhost2_pool
  
# all upstream configurations
upstreams: 
  localhost1_pool: 
    keepalive: 16 # for all backends in current pool
    servers: 
     - 127.0.0.1:8080
     - 127.0.0.2:8080
  localhost2_pool: 
    keepalive: 32 # for all backends in current pool
    servers: 
     - 127.0.0.1:8088
     - 127.0.0.2:8088
     - 127.0.0.3:8088
     - 127.0.0.4:8088
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].