This commit is contained in:
Raphaël Thériault 2020-01-15 00:11:56 -05:00
commit b565f7a47e
1 changed files with 5 additions and 1 deletions

View File

@ -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
@ -73,6 +73,10 @@ server {
location / {
proxy_pass http://localhost:8080;
location /f {
client_max_body_size 10M;
}
}
}
```