mirror of
https://github.com/MercuryWorkshop/epoxy-tls.git
synced 2025-05-12 22:10:01 -04:00
add server readme
This commit is contained in:
parent
92097afdcb
commit
9c49e68daf
2 changed files with 10 additions and 1 deletions
9
server/README.md
Normal file
9
server/README.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
# `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](flamegraph.svg?raw=true).
|
||||
|
||||
## 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`](src/config.rs).
|
|
@ -295,7 +295,7 @@ pub enum ConfigFormat {
|
|||
Yaml,
|
||||
}
|
||||
|
||||
/// Server implementation of the Wisp protocol in Rust, made for epoxy.
|
||||
/// Performant server implementation of the Wisp protocol in Rust, made for epoxy.
|
||||
#[derive(Parser)]
|
||||
#[command(version = clap::crate_version!())]
|
||||
pub struct Cli {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue