epoxy-tls/server
2024-12-21 18:33:17 -08:00
..
src clippy pedantic 2024-11-29 21:30:09 -08:00
build.rs more verbose version 2024-09-15 22:34:38 -07:00
Cargo.toml vendor fastwebsockets upgrade 2024-11-27 22:45:10 -08:00
flamegraph.svg flamegraph 2024-11-24 22:07:14 -08:00
LICENSE move license 2024-10-08 18:23:26 -07:00
README.md readme improvements 2024-12-21 18:33:17 -08:00

epoxy-server

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

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

Building

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.