http and https reverse proxy server
Go to file
2024-09-14 00:52:38 +03:00
src flake 2024-09-13 23:53:17 +03:00
Cargo.lock nothing changes 2024-09-14 00:52:38 +03:00
Cargo.toml small fix 2024-09-13 22:32:51 +03:00
conf.yml init commit 2024-06-06 00:28:16 +03:00
explaination.png init commit 2024-06-06 00:28:16 +03:00
README.md Merge branch 'main' of https://github.com/MeexReay/http_rrs 2024-09-13 21:46:52 +03:00

Flowgate

HTTP requests redirection system

Features:

  • Request redirection
  • SSL/TLS support
  • Rustls support (not yet)
  • Keep-alive streams (not yet)

Config

Default conf.yml:

http_host: localhost:80
https_host: localhost:443

sites:
  # - domain: example.com                            # Domain with SSL
  #   host: localhost:8080
  #   ssl_cert: "/path/to/public/certificate.txt"
  #   ssl_key: "/path/to/private/key.txt"

  # - domain: sub.example.com                        # Domain with no SSL
  #   host: localhost:8081

  - domain: localhost
    host: localhost:8080

Rust features:

  • use-openssl
  • use-rustls (rustls - openssl alternative)