Crates.io | reproto-server |
lib.rs | reproto-server |
version | 0.3.36 |
source | src |
created_at | 2017-07-16 15:43:22.577814 |
updated_at | 2018-04-28 12:12:10.969906 |
description | reproto repository server |
homepage | https://github.com/reproto/reproto |
repository | https://github.com/reproto/reproto |
max_upload_size | |
id | 23636 |
size | 15,360 |
This is the server part of the HTTP repository of reproto.
Configuration for the server is defined in TOML, you can specify the configuration path to load
using the REPROTO_SERVER_CONFIG
environment variable.
The following is a configuration with all options.
# The address to bind the server to.
listen_address = "127.0.0.1:1234"
# Path to the objects storage.
objects = "/var/reproto-server/objects"
# Maximum file size to permit during uploads.
max_file_size = 10000000
For a complete set of options and implementation details, please see config.rs.