jokoway 0.1.0-rc.1

Jokoway is a high-performance API Gateway built on Pingora (Rust) with dead-simple YAML configs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
services:
  pebble:
    image: ghcr.io/letsencrypt/pebble:latest
    command: -config /test/config/pebble-config.json
    ports:
      - "14000:14000"
      - "15000:15000"
    environment:
      - PEBBLE_VA_NOSLEEP=1
      - PEBBLE_WFE_NONCE_REJECT_DEPTH=0
    volumes:
      - ./pebble-config.json:/test/config/pebble-config.json
      - ./certs/cert.pem:/test/config/cert.pem
      - ./certs/key.pem:/test/config/key.pem
    extra_hosts:
      - "test.com:host-gateway"