alist/internal/bootstrap
Andy Hsu 6c2f3486fc fix!: reverse proxy to sub-directory (#3483)
from this commit, if you want reverse proxy to sub-directory like `alist` with `nginx`, you need config:

```nginx
location /alist/ {
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header Host $http_host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header Range $http_range;
    proxy_set_header If-Range $http_if_range;
    proxy_redirect off;
    proxy_pass http://127.0.0.1:5244/alist/;
    # the max size of file to upload
    client_max_body_size 20000m;
}
```
2023-02-18 19:03:07 +08:00
..
data chore: change qBittorrent setting [skip ci] 2023-02-15 16:51:29 +08:00
aria2.go fix: async init aria2 to optimize start duration 2022-12-04 00:00:40 +08:00
config.go fix!: reverse proxy to sub-directory (#3483) 2023-02-18 19:03:07 +08:00
db.go fix: cancel `EXCLUSIVE` mode on sqlite3 2023-01-19 16:49:43 +08:00
index.go feat: Search enhancement (#2562) 2022-12-05 13:28:39 +08:00
log.go feat: only log to std on debug/dev mode 2023-02-05 09:17:37 +08:00
qbittorrent.go feat: support qbittorrent (close #3087 in #3333) 2023-02-14 15:20:45 +08:00
storage.go style: shorten name `operations` to `op` 2022-08-31 21:01:15 +08:00