From 26a759ad2cff22be9bf863098c11ec36a7ef13f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Th=C3=A9riault?= Date: Mon, 28 Oct 2019 11:21:22 -0400 Subject: [PATCH 1/2] Config isn't in home dir anymore --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3096d98..a5da3ac 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Details for programmatic usage are provided in [the dedicated section](#programm ## Config -The config is located at `~/.filite/config.toml` and follows the following format. Most of the time, the defaults are reasonable. +The config follows the following format. Most of the time, the defaults are reasonable. ```toml # Port to listen on From 92eaf570cf917f4baea4745651efd621847c4a9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Th=C3=A9riault?= Date: Mon, 25 Nov 2019 10:36:32 -0500 Subject: [PATCH 2/2] Include max body size in NGINX config example --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index a5da3ac..fa8fbbf 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,10 @@ server { location / { proxy_pass http://localhost:8080; + + location /f { + client_max_body_size 10M; + } } } ```