Compare commits

..

No commits in common. "7f2f7460acd4fcc7e36e5e117a3642e79a6076bf" and "71242d37cebd56c77b907104550ee9ea44731ade" have entirely different histories.

2 changed files with 1 additions and 7 deletions

View file

@ -30,12 +30,6 @@ transbeam is configured with the following environment variables:
(default: `./static`)
- `TRANSBEAM_PORT`: port to listen on localhost for http requests
(default: 8080)
- `TRANSBEAM_REVERSE_PROXY`: whether transbeam is running behind a
reverse proxy (recommended), or directly exposed to the internet. If
true, transbeam will only bind to localhost, and will use the
`Forwarded` or `X-Forwarded-For` headers to determine client IP
addresses for logs. If false, transbeam will bind on all interfaces,
and will always log the peer IP address. (default: true)
- `TRANSBEAM_MAX_LIFETIME`: maximum number of days files can be kept
for (default: 30)
- `TRANSBEAM_MAX_UPLOAD_SIZE`: maximum size of a fileset being

View file

@ -288,7 +288,7 @@ async fn main() -> std::io::Result<()> {
let storage_dir: PathBuf = env_or_else("TRANSBEAM_STORAGE_DIR", || PathBuf::from("storage"));
let port: u16 = env_or("TRANSBEAM_PORT", 8080);
let mnemonic_codes: bool = env_or("TRANSBEAM_MNEMONIC_CODES", true);
let reverse_proxy: bool = env_or("TRANSBEAM_REVERSE_PROXY", true);
let reverse_proxy: bool = env_or("TRANSBEAM_REVERSE_PROXY", false);
let max_lifetime: u16 = env_or("TRANSBEAM_MAX_LIFETIME", 30);
let max_upload_size: u64 =
env_or::<ByteSize>("TRANSBEAM_MAX_UPLOAD_SIZE", ByteSize(16 * bytesize::GB)).as_u64();