insert to existing conf
This commit is contained in:
18
README.md
Normal file
18
README.md
Normal file
@@ -0,0 +1,18 @@
|
||||
# FLEES
|
||||
|
||||
a very small file sharing website
|
||||
|
||||
- configure with data/shares.json
|
||||
- configure with data/config.json
|
||||
- generate shares with utils/create-share.py
|
||||
- proxy with nginx:
|
||||
```
|
||||
location /flees/ {
|
||||
proxy_pass http://localhost:8136/;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Scheme $scheme;
|
||||
proxy_set_header X-Script-Name /flees;
|
||||
client_max_body_size 8G;
|
||||
}
|
||||
```
|
||||
Reference in New Issue
Block a user