epoxy-tls/server
2024-09-22 09:07:44 -07:00
..
src use system resolver if no dns servers specified, make invalid frame type more verbose 2024-09-22 09:07:44 -07:00
build.rs more verbose version 2024-09-15 22:34:38 -07:00
Cargo.toml switch to rustls 2024-09-16 13:13:45 -07:00
flamegraph.svg random stuff 2024-09-08 22:45:52 -07:00
README.md redirect user to server readme 2024-07-22 14:29:35 -07:00

epoxy-server

Performant server implementation of the Wisp protocol in Rust, made for epoxy.

You can view a recent flamegraph of the server under load here.

Building

Important

Rust nightly is required.

cargo b -r

The executable will be placed at target/release/epoxy-server. You can optionally add the environment variable RUSTFLAGS="-C target-cpu=native" to optimize for the current CPU.

Configuration

epoxy-server is configured through a configuration file in either TOML, JSON, or YAML. Pass the configuration file's path as an argument to epoxy-server.

The defaults can be printed with the command line option --default-config and the configuration file format can be changed from the default of TOML with the command line option --format. Documentation for the available configuration options is in src/config.rs.