23 lines
481 B
Markdown
23 lines
481 B
Markdown
# SFTPGo Server
|
|
|
|
# Configuration
|
|
After install, add an admin and a user accessing ```<ip_address>:8080```
|
|
|
|
# Reverse proxy setup
|
|
NOTE: WebDav service is running on port 8081
|
|
|
|
## Proxy entry configuration
|
|
```
|
|
client_max_body_size 10G;
|
|
client_body_timeout 3600s;
|
|
client_header_timeout 3600s;
|
|
|
|
proxy_connect_timeout 3600s;
|
|
proxy_send_timeout 3600s;
|
|
proxy_read_timeout 3600s;
|
|
|
|
proxy_buffer_size 128k;
|
|
proxy_buffers 4 256k;
|
|
proxy_busy_buffers_size 256k;
|
|
proxy_request_buffering off;
|
|
``` |